forked from microsoft/vscode-react-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
42
43
44
45
46
47
48
{
"name": "react-todo",
"version": "1.0.0",
"description": "Simple todo application to demo react and es6 in VS Code",
"main": "webpack.config.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"dev": "webpack-dev-server --config webpack.config.js --open",
"serve": "node server/server.js"
},
"repository": {
"type": "git",
"url": "git://github.com/christopherthompson81/vscode-react-sample.git"
},
"author": "christopherthompson81",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.23.1",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.6.1",
"promise": "^7.3.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.13.2",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"dependencies": {
"body-parser": "^1.18.2",
"classnames": "^2.2.5",
"express": "^4.16.2",
"file-loader": "^0.8.5",
"imports-loader": "^0.6.5",
"jquery": "^2.2.4",
"lodash": "^4.17.4",
"material-ui": "^0.15.4",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-tap-event-plugin": "^1.0.0",
"resolve-url-loader": "^1.6.1",
"tether": "^1.4.1",
"url-loader": "^0.5.9"
}
}