-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.09 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": "studyportal-axion",
"description": "react frontend for studyportal website",
"main": "index.js",
"repository": "[email protected]:sdslabs/studyportal-axion.git",
"author": "AyanChoudhary <[email protected]>",
"license": "MIT",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"antd": "^4.13.1",
"axios": "^0.19.2",
"jquery": "^3.4.1",
"lodash": "^4.17.21",
"lunr": "^2.3.9",
"minisearch": "^3.0.2",
"node-sass": "^4.13.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-lottie": "^1.2.3",
"react-redux": "^7.1.1",
"react-router-dom": "^5.0.0",
"react-scripts": "3.0.1",
"react-select": "^4.2.1",
"react-swipeable-views": "^0.13.9",
"react-toastify": "^7.0.3",
"redux": "^4.0.4",
"websocket": "^1.0.31"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint src --ext .js",
"lintfix": "eslint --fix --ext .js",
"format": "prettier --write .",
"format:test": "prettier --check .",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"babel-plugin-module-resolver": "^4.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"react-styleguidist": "^9.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": "eslint --cache --fix",
"*.{js,scss}": "prettier --write"
}
}