forked from microsoft/vscode-react-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 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
44
{
"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"
},
"author": "waderyan",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.3",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"html-webpack-plugin": "^2.14.0",
"node-sass": "^3.4.2",
"promise": "^7.1.1",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"body-parser": "^1.15.0",
"classnames": "^2.2.3",
"express": "^4.13.4",
"file-loader": "^0.8.5",
"imports-loader": "^0.6.5",
"jquery": "^2.2.2",
"lodash": "^4.6.1",
"material-ui": "^0.15.0-alpha.2",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-tap-event-plugin": "^0.2.2",
"resolve-url-loader": "^1.4.3",
"tether": "^1.2.0",
"url-loader": "^0.5.7"
}
}