-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "react",
"version": "0.1.0",
"description": "",
"main": "dist/react.js",
"author": "Nick Aversano",
"contributors": [
"Anushri Adhia <[email protected]>",
"Alan Chu <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nickav/react.git"
},
"scripts": {
"dist": "NODE_ENV=production webpack -p --mode production",
"start": "yarn start:dev",
"start:dev": "webpack-dev-server --config ./examples/dev/webpack.config.js --port 3000 --mode development",
"slides": "webpack-dev-server --config ./examples/slides/webpack.config.js --port 3000 --mode development"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.6",
"css-loader": "^2.1.1",
"raw-loader": "^2.0.0",
"style-loader": "^0.23.1",
"webpack": "^4.32.2",
"webpack-cli": "^3.3.2",
"webpack-dev-server": "^3.4.1"
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"arrowParens": "always"
}
}