forked from andrewagain/minimal-react-starter
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
36 lines (36 loc) · 814 Bytes
/
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
{
"name": "minimal-react-starter",
"version": "0.0.4",
"description": "Minimal react starter project",
"main": "src/index.js",
"scripts": {
"compile": "webpack",
"start": "node server.js"
},
"keywords": [
"react",
"webpack",
"babel",
"minimal",
"starter"
],
"author": "Andrew H Farmer",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/ahfarmer/minimal-react-starter.git"
},
"dependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.22.0",
"express": "^4.14.1",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.0"
}
}