-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 985 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
37
38
39
40
41
{
"name": "react-app-framework",
"version": "0.1.0",
"description": "my react web app framework",
"main": "index.js",
"scripts": {
"test": "node index.js",
"start": "node index.js",
"build": "webpack",
"build-dev": "webpack -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zccz14/react-app-framework.git"
},
"keywords": [
"React",
"Web",
"App",
"Framework"
],
"author": "Riki",
"license": "MIT",
"bugs": {
"url": "https://github.com/zccz14/react-app-framework/issues"
},
"homepage": "https://github.com/zccz14/react-app-framework#readme",
"dependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.5.0",
"express": "^4.14.0",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"webpack": "^1.13.1"
}
}