-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
37 lines (37 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
{
"name": "mock-page-context-promise",
"description": "",
"version": "1.0.0",
"scripts": {
"start": "npm run serve",
"build": "packing build",
"build:dev": "NODE_ENV=development packing build",
"build:beta": "NODE_ENV=beta packing build",
"build:prod": "NODE_ENV=production packing build",
"serve": "webpack-dashboard --title a -- packing serve",
"serve:normal": "packing serve",
"serve:dist": "packing build && packing serve-dist",
"eslint": "eslint src"
},
"pre-commit": [
"eslint"
],
"dependencies": {
"packing": "../.."
},
"devDependencies": {
"axios": "*",
"express": "^4.14.1",
"open-browser-webpack-plugin": "^0.0.5",
"packing-template-pug": "^1.1.7",
"packing-urlrewrite": "^0.1.7",
"pre-commit": "^1.2.2",
"webpack-dashboard": "^0.4.0",
"webpack-dev-middleware": "^1.10.0",
"webpack-hot-middleware": "^2.17.0"
},
"engines": {
"node": ">=4.0",
"npm": ">=3.0"
}
}