This repository has been archived by the owner on Jul 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.73 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
{
"name": "react-elysium",
"version": "0.1.0",
"private": false,
"license": "MIT",
"dependencies": {
"@types/jest": "^26.0.8",
"@types/node": "^14.0.27",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"axios": "^0.19.2",
"bulma": "^0.9.1",
"classnames": "^2.2.6",
"d3": "^5.16.0",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^3.4.1",
"typescript": "^3.9.7",
"validator": "^13.1.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"lint": "prettier --write '**/*.ts' '**/*.tsx' '**/*.jsx' '**/*.js' '**/*.css' '**/*.scss' '**/*.md'",
"test": "react-scripts test --env=jsdom",
"coverage": "yarn test --coverage",
"eject": "react-scripts eject"
},
"devDependencies": {
"enzyme": "3.7.0",
"enzyme-adapter-react-16": "1.7.0",
"husky": "^4.2.5",
"immutability-helper": "^2.7.1",
"lint-staged": "^10.2.11",
"npm-run-all": "4.1.5",
"prettier": "^2.0.5",
"react-testing-library": "5.3.0",
"standard": "14.3.1",
"stylelint": "12.0.1",
"stylelint-config-standard": "19.0.0",
"stylelint-scss": "3.13.0"
},
"eslint": {
"extends": "react-app",
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": "error"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{tsx,jsx,ts,js,md,css,html}": [
"yarn lint"
],
"yarn.lock": [
"git rm --cached"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}