-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.21 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-webpack-example-app",
"version": "1.1.0",
"description": "Example using react, webpack and styled components",
"repository": {
"type": "git",
"url": "https://github.com/StevenIseki/react-webpack-example"
},
"author": "Steven Iseki <stevenisekimartin@gmail.com>",
"license": "MIT",
"scripts": {
"build": "npm run clean && webpack --mode=production",
"clean": "rimraf dist/*",
"dev": "webpack-dev-server --mode=development --port 3000 --inline --hot",
"prod": "node dist/server",
"test": "babel-tape-runner test/*.js"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "7.3.3",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "7.0.0",
"babel-loader": "8.0.5",
"babel-tape-runner": "^3.0.0",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"express": "^4.14.0",
"html-webpack-plugin": "3.2.0",
"jsdom": "13.2.0",
"prop-types": "^15.6.0",
"rimraf": "^2.6.3",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"styled-components": "^4.1.3",
"tape": "4.10.1",
"webpack": "4.29.4",
"webpack-cli": "3.2.3",
"webpack-dev-server": "3.1.14",
"webpack-node-externals": "^1.7.2"
}
}