forked from venetrius/groupsite
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.68 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">= 12.x.x",
"npm": ">= 6.x.x"
},
"scripts": {
"start": "react-scripts --max_old_space_size=4096 start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"heroku-postbuild": "npm run build",
"lint": "eslint --ignore-path .gitignore --ext .js .",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js)\"",
"check-format": "npm run prettier -- --list-different",
"validate": "concurrently \"npm run check-format\" \"npm run lint\""
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.34",
"@fortawesome/free-solid-svg-icons": "^5.15.2",
"@fortawesome/react-fontawesome": "^0.1.14",
"antd": "^4.2.2",
"axios": "^0.21.1",
"dotenv": "^8.2.0",
"emotion": "^10.0.23",
"globalize": "^1.4.2",
"jshint": "^2.12.0",
"moment": "^2.29.1",
"query-string": "^6.12.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-highlight": "^0.15.0",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.2",
"reactn": "^2.2.7",
"styled-components": "^5.2.1"
},
"devDependencies": {
"concurrently": "^5.3.0",
"eslint": "^7.20.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier && lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}