This repository has been archived by the owner on Nov 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.69 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "dream-plus",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.26",
"@fortawesome/free-solid-svg-icons": "^5.12.0",
"@fortawesome/react-fontawesome": "^0.1.8",
"@reduxjs/toolkit": "^1.0.4",
"@types/jest": "24.0.19",
"@types/node": "12.11.6",
"@types/react": "16.9.9",
"@types/react-dom": "16.9.2",
"apexcharts": "^3.8.6",
"axios": "^0.19.0",
"dotenv": "^8.2.0",
"react": "^16.11.0",
"react-apexcharts": "^1.3.3",
"react-dom": "^16.11.0",
"react-minimal-pie-chart": "^5.0.1",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"react-tooltip": "^4.2.10",
"simple-query-string": "^1.3.2",
"styled-components": "^4.4.0",
"typeface-nanum-square-round-subset": "^1.0.1",
"typescript": "3.6.4",
"use-async-effect": "^2.2.1"
},
"scripts": {
"developing": " yarn env:browser yarn develop",
"develop": "react-scripts start",
"env:browser": "cross-env BROWSER=none",
"build": "react-scripts build",
"test:unit": "react-scripts test",
"test:e2e": "TS_NODE_PROJECT='./src/specs/tsconfig.json' codeceptjs run",
"lint": "./node_modules/.bin/eslint './src/**/*.{ts,tsx}'",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/dotenv": "^6.1.1",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.2",
"@types/simple-query-string": "^1.3.0",
"@types/styled-components": "^4.1.19",
"@typescript-eslint/eslint-plugin-tslint": "^2.5.0",
"@typescript-eslint/parser": "^2.5.0",
"codeceptjs": "^2.3.5",
"cross-env": "^6.0.3",
"eslint": "^6.5.1",
"eslint-config-react-app": "^5.0.2",
"eslint-plugin-codeceptjs": "^1.1.0",
"husky": ">=1",
"lint-staged": ">=8",
"node-sass": "^4.13.0",
"prettier": "^1.18.2",
"puppeteer": "^1.20.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-clean-code": "^0.2.10",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
],
"*.js": [
"eslint --fix",
"git add"
]
}
}