-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
78 lines (78 loc) · 2.03 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
{
"name": "b5",
"version": "0.2.2",
"private": true,
"dependencies": {
"blob-polyfill": "^7.0.20220408",
"file-saver": "^2.0.5",
"fuse.js": "^7.0.0",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-device-detect": "^2.2.3",
"react-dom": "^18.2.0",
"react-fast-compare": "^3.2.2",
"react-scripts": "^5.0.1",
"tinycolor2": "^1.6.0",
"uuid": "^9.0.1"
},
"scripts": {
"do-gulp": "gulp",
"build": "react-scripts build",
"run-test": "react-scripts test",
"test": "npm-run-all do-gulp run-test",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,html,css}\"",
"css": "NODE_ENV=development npm-run-all do-gulp",
"start": "react-scripts start",
"deploy": "NODE_ENV=production npm-run-all do-gulp build",
"submodule": "cd src/b5.js && npm i && cd ../..",
"netlify": "run-s submodule deploy",
"setup": "npm install && npm run submodule"
},
"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"
]
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"autoprefixer": "^10.4.16",
"cssnano": "^6.0.1",
"del": "^7.1.0",
"gulp": "^4.0.2",
"gulp-postcss": "^9.0.1",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.32",
"postcss-color-mod-function": "^3.0.3",
"postcss-scss": "^4.0.9",
"precss": "^4.0.0",
"prettier": "^3.1.0",
"react-error-overlay": "6.0.11",
"resize-observer-polyfill": "^1.5.1",
"simple-git-hooks": "^2.9.0"
},
"type": "module",
"jest": {
"collectCoverageFrom": [
"**/*.{js,css}"
]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,html,css}": "prettier --write"
}
}