forked from TeamSmores/learn-ecmascript6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
49
{
"name": "ES5toES6",
"version": "1.0.0",
"description": "Your awesome project!",
"main": "bundle.js",
"scripts": {
"prestart": "npm run task",
"start": "node server/server.js",
"start-dev": "node server/dev-server.js",
"lint": "eslint components",
"task": "webpack"
},
"author": "",
"license": "ISC",
"babel": {
"presets": [
"react",
"es2015",
"stage-0"
]
},
"devDependencies": {
"watchify": "^3.2.2"
},
"dependencies": {
"babel-preset-es2015": "^6.0.15",
"babel-preset-react": "^6.0.15",
"babel-preset-stage-0": "^6.3.13",
"babelify": "^7.2.0",
"browserify": "^10.2.4",
"es6codegen": "git+https://github.com/TeamSmores/escodegen.git",
"esprima": "^2.7.2",
"express": "^4.13.3",
"gulp": "^3.9.0",
"gulp-notify": "^2.2.0",
"path": "^0.12.7",
"react": "^0.14",
"react-dom": "^0.14.0",
"vinyl-source-stream": "^1.1.0",
"express" : "^4.13.3",
"babel-core": "^6.0.20",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.0.1",
"babel-preset-stage-0": "^6.0.15",
"eslint-plugin-react": "^3.6.2",
"react-hot-loader": "^1.3.0",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.1" }
}