-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "calculator",
"version": "0.0.1",
"description": "A simple react calculator.",
"main": "index.js",
"scripts": {
"test": "test",
"dev": "webpack -d --watch",
"build": "webpack -p",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevingrammer/calculator.git"
},
"keywords": [
"react",
"calculator"
],
"author": "Kevin Grammer",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevingrammer/calculator/issues"
},
"homepage": "https://github.com/kevingrammer/calculator#readme",
"dependencies": {
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"body-parser": "^1.15.0",
"css-loader": "^0.23.1",
"express": "^4.13.4",
"node-sass": "^3.7.0",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"sass-loader": "^3.2.0",
"socket.io": "^1.4.5",
"style-loader": "^0.13.1",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1"
}
}