-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.36 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.36 KB
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
{
"name": "devcsp-admin",
"version": "0.0.1",
"author": "Creative Tim, Lucas Polizeli",
"private": true,
"homepage": "https://www.admin.devcsp.site",
"dependencies": {
"axios": "^0.19.2",
"bootstrap": "4.3.1",
"chart.js": "2.8.0",
"history": "4.9.0",
"node-sass": "4.12.0",
"perfect-scrollbar": "1.4.0",
"react": "16.8.6",
"react-chartjs-2": "2.7.6",
"react-dom": "16.8.6",
"react-google-maps": "9.4.5",
"react-notification-alert": "0.0.12",
"react-router": "5.0.0",
"react-router-dom": "5.0.0",
"react-scripts": "3.0.1",
"reactstrap": "8.0.0"
},
"scripts": {
"start": "react-scripts start",
"build": "npm install && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"install:clean": "rm -rf node_modules/ && rm -rf package-lock.json && npm install && npm start",
"compile-sass": "node-sass src/assets/scss/paper-dashboard.scss src/assets/css/paper-dashboard.css",
"minify-sass": "node-sass src/assets/scss/paper-dashboard.scss src/assets/css/paper-dashboard.min.css --output-style compressed",
"map-sass": "node-sass src/assets/scss/paper-dashboard.scss src/assets/css/paper-dashboard.css --source-map true",
"prettify": "npx prettier --config .prettierrc --write \"src/**/*.{js,jsx,scss,css}\""
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"optionalDependencies": {
"@types/googlemaps": "3.36.2",
"@types/markerclustererplus": "2.1.33",
"@types/react": "16.8.19",
"ajv": "6.10.0",
"jquery": "3.4.1",
"typescript": "3.4.5"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^4.2.1",
"prettier": "^1.19.1"
}
}