-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
78 lines (78 loc) · 2.72 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": "iitd-webapp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@testing-library/jest-dom": "^5.11.0",
"animejs": "^3.2.0",
"babel-eslint": "^10.1.0",
"connect-history-api-fallback": "^1.6.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-flowtype": "^5.2.0",
"framer-motion": "^1.11.1",
"leaflet": "^1.6.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-easy-back-to-top": "^1.0.2",
"react-feather": "^2.0.8",
"react-grid-layout": "^0.18.3",
"react-helmet": "^6.1.0",
"react-lazyload": "^3.0.0",
"react-leaflet": "^2.7.0",
"react-leaflet-control": "^2.1.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"react-spring": "^8.0.27",
"react-use": "^15.3.2",
"rodal": "^1.8.1",
"rsuite": "^4.7.5",
"use-dark-mode": "^2.3.1"
},
"scripts": {
"start": "react-scripts start",
"build": "npm run css-build && react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"eslint-test": "eslint './**/*.js' './**/*.jsx'",
"eslint-fix": "eslint --fix './**/*.js' './**/*.jsx'",
"stylelint-test": "stylelint '**/*.{css,scss,sass}'",
"stylelint-fix": "stylelint --fix '**/*.{css,scss,sass}'",
"lint-tests": "npm run eslint-test && npm run stylelint-test",
"lint-fixes": "npm run eslint-fix;npm run stylelint-fix",
"css-build": "node-sass --omit-source-map-url src/App.scss src/App.css && stylelint --fix src/App.css",
"watcher": "onchange \"src/App.scss\" --npm run css-build"
},
"husky": {
"hooks": {
"pre-commit": "npm run css-build && git add src/App.css && npm run lint-tests && npm build && npm test -- --watchAll=false"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.5",
"husky": "^4.2.5",
"node-sass": "^4.14.1",
"stylelint": "^13.6.1",
"stylelint-config-sass-guidelines": "^7.0.0",
"stylelint-config-standard": "^20.0.0",
"prettier": "^2.0.5"
}
}