-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.31 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "blockpaint",
"version": "1.4.0",
"description": "A MacPaint™-like Dapp for the Blockstack ecosystem",
"repository": "[email protected]:mysterycommand/blockpaint.git",
"homepage": "https://mysterycommand.github.io/blockpaint",
"author": "Matt Hayes <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"reset": "yarn clean node_modules/ && yarn install",
"clean": "rm -rf build/",
"start": "craco start",
"build": "craco build",
"lint": "eslint 'src/**/*.{j,t}s?(x)'",
"test": "craco test",
"eject": "react-scripts eject",
"component": "node ./src/cli"
},
"engines": {
"node": ">=12",
"npm": "6.14.11",
"yarn": "1.22.10"
},
"dependencies": {
"blockstack": "21.1.1",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@craco/craco": "5.9.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.2.0",
"@semantic-release/npm": "7.0.10",
"@semantic-release/release-notes-generator": "9.0.1",
"@types/jest": "26.0.20",
"@types/node": "14.14.22",
"@types/react": "17.0.0",
"@types/react-dom": "17.0.0",
"commitizen": "4.2.3",
"craco-blockstack": "1.0.2",
"cz-conventional-changelog": "3.3.0",
"jest-canvas-mock": "2.3.0",
"lodash": "4.17.20",
"prettier": "2.2.1",
"react-scripts": "4.0.1",
"semantic-release": "17.3.7",
"semantic-release-github-pr": "https://github.com/mysterycommand/semantic-release-github-pr.git#fix/34-and-35",
"typescript": "4.1.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"collectCoverageFrom": [
"src/components/**/*.{j,t}s?(x)",
"!<rootDir>/node_modules/"
],
"coverageReporters": [
"text"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
}
}