-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·79 lines (79 loc) · 2.15 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
{
"name": "capstone-fineconsign",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.0.2",
"@material-ui/icons": "^4.0.1",
"@material-ui/styles": "^4.0.2",
"browser-image-compression": "^1.0.5",
"firebase": "^6.1.1",
"material-ui-image": "^3.2.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-google-font-loader": "^1.0.5",
"react-responsive": "^6.1.2",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^0.87.1",
"serve": "^11.0.2",
"typescript": "^3.5.1"
},
"scripts": {
"start": "npx npm-run-all -p api watch webpack",
"watch": "npx esw -w --changed --fix src/**/*.{js,jsx}",
"webpack": "react-scripts start",
"api": "json-server --watch api/database.json --port 8088",
"build": "react-scripts build",
"test": "cross-env CI=true react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lintWatch": "eslint --fix",
"lintFix": "eslint ./src/**/*.{js,jsx} --fix",
"lint": "eslint ./src/**/*.{js,jsx}"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"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": {
"@craco/craco": "^5.2.1",
"babel-cli": "^6.26.0",
"cpy-cli": "^2.0.0",
"craco-less": "^1.9.0",
"cross-env": "^5.2.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-watch": "^5.1.2",
"husky": "^2.3.0",
"json-server": "^0.15.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.0",
"semantic-ui-less": "^2.4.1"
}
}