-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.2 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.2 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
42
43
{
"name": "react-template",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "webpack-dev-server -d --port 3000 --open --config build/webpack.dev.js",
"build": "webpack --config build/webpack.prod.js",
"test": "jest --config=jest.config.json",
"test:dev": "yarn test --watch",
"test:coverage": "yarn test --coverage"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^25.5.4",
"jest-html-reporter": "^3.1.0",
"node-sass": "^4.13.0",
"prettier": "^1.19.1",
"sass-loader": "^8.0.0",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.2",
"ts-jest": "^25.4.0",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^4.1.0",
"typescript": "^3.7.4",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.1",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}