-
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.15 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.15 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": "react-review",
"version": "1.0.0",
"description": "React.js Review",
"main": "app.js",
"scripts": {
"start": "webpack-dev-server",
"dev": "yarn run clean && webpack -d --watch",
"prod": "yarn run clean && webpack -p",
"clean": "rimraf ./dist/*"
},
"author": "Pluto Solutions <hi@pluto.solutions> (https://pluto-solutions.business.site/)",
"license": "ISC",
"devDependencies": {
"@types/react": "^16.0.31",
"@types/react-dom": "^16.0.3",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.13.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"ts-loader": "^3.2.0",
"typescript": "^2.6.2",
"webpack": "^3.9.1",
"webpack-dev-server": "^2.9.5"
},
"dependencies": {
"@types/node": "^11.13.6",
"@types/prop-types": "^15.5.2",
"prop-types": "^15.6.0",
"react-router-dom": "^5.0.0"
}
}