-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.38 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
{
"name": "capstone-frontend",
"version": "0.1.0",
"private": true,
"homepage": "http://devwulf.github.io/capstone-frontend",
"dependencies": {
"@types/deep-equal": "^1.0.1",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@types/react": "^17.0.11",
"@types/react-dom": "^17.0.7",
"@types/react-router-dom": "^5.1.9",
"@types/react-select": "^4.0.17",
"@types/react-toggle": "^4.0.2",
"axios": "^0.21.1",
"chart.js": "^3.5.1",
"deep-equal": "^1.1.1",
"rc-slider": "^9.7.2",
"react": "^17.0.2",
"react-chartjs-2": "^3.0.5",
"react-cookie": "^4.1.1",
"react-custom-scrollbars-2": "^4.4.0",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"react-select": "^4.3.1",
"react-toggle": "^4.1.2",
"typescript": "^4.3.3"
},
"scripts": {
"start": "npm run watch:css && react-scripts start",
"build": "npm run build:css && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"build:css": "postcss src/assets/tailwind.css -o src/assets/main.css",
"watch:css": "postcss src/assets/tailwind.css -o src/assets/main.css",
"setup": "npm run setup:css && npm run setup:test && npm run setup:misc",
"setup:css": "npm install -D [email protected] [email protected] [email protected] [email protected]",
"setup:test": "npm install -D [email protected] @types/[email protected] @wojtekmaj/enzyme-adapter-react-17@latest [email protected]",
"setup:misc": "npm install -D [email protected]",
"eslint": ".\\node_modules\\.bin\\eslint --init",
"deploy": "npm run build && gh-pages -d build"
},
"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": {
"@types/enzyme": "^3.10.8",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.2",
"autoprefixer": "^10.2.5",
"enzyme": "^3.11.0",
"eslint": "^7.28.0",
"eslint-plugin-react": "^7.24.0",
"gh-pages": "^3.1.0",
"postcss": "^8.2.15",
"postcss-cli": "^8.3.1",
"react-test-renderer": "^17.0.2",
"tailwindcss": "^2.1.2"
}
}