-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 KB
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
{
"name": "timer",
"version": "0.0.0",
"license": "MIT",
"description": "",
"private": true,
"scripts": {
"start": "webpack-dev-server --open --config webpack/webpack.config.dev.js",
"build": "webpack --config webpack/webpack.config.prod.js",
"lint-staged": "lint-staged"
},
"dependencies": {
"core-js": "~3.2.1"
},
"devDependencies": {
"clean-webpack-plugin": "~3.0.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.18.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.9",
"lint-staged": "^10.0.0",
"node-sass": "~4.12.0",
"prettier": "~1.18.2",
"ts-loader": "~6.0.4",
"tslint": "~5.19.0",
"typescript": "~3.5.3",
"webpack": "~4.39.2",
"webpack-cli": "~3.3.7",
"webpack-dev-server": "~3.8.0",
"webpack-merge": "~4.2.1"
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"tslint --fix"
]
}
}