-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 758 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 758 Bytes
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
{
"name": "es6-angular-webpack-fullstack",
"version": "0.0.1",
"description": "",
"author": "Anthony Giniers",
"repository": {
"type": "git",
"url": "https://github.com/antogyn/es6-angular-webpack-fullstack"
},
"engines": {
"node": "4.2.3",
"npm": "2.14.x"
},
"scripts": {
"build:dev": "webpack -d",
"build:prod": "webpack -p",
"start": "node app.js"
},
"dependencies": {
"angular": "1.4.7",
"babel-polyfill": "6.3.14",
"babel-preset-es2015": "6.3.13",
"babel-register": "6.4.3",
"ejs": "2.3.x",
"express": "4.13.x",
"jquery": "2.1.4"
},
"devDependencies": {
"babel-core": "6.4.5",
"babel-loader": "6.2.1",
"expose-loader": "0.7.1",
"webpack": "1.12.12"
}
}