-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.58 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": "doconfig",
"version": "0.0.1",
"description": "doconfig webversion builded with express and vuejs - create conf in seconds",
"main": "src/server/index.js",
"repository": "git@github.com:idmore/doconfig-web.git",
"author": "yussan <yussandeveloper@gmail.com>",
"license": "MIT",
"scripts": {
"start": "NODE_ENV=development nodemon ./src/server/index.js --exec 'node -r dotenv/config -r babel-register'",
"webpack:watch": "webpack --watch --progress",
"build:prod": "rimraf dist && rimraf public/build && NODE_ENV=production webpack --progress",
"lint": "eslint src"
},
"pre-commit": "lint",
"dependencies": {
"copy-to-clipboard": "^3.0.8",
"express": "^4.16.2",
"firebase": "^4.9.0",
"pug": "^2.0.0-rc.4",
"string-manager": "^1.1.5",
"vue": "^2.5.13",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"webpack-dev-middleware": "^2.0.4"
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"copy-webpack-plugin": "^4.3.1",
"dotenv": "^4.0.0",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"html-webpack-plugin": "^2.30.1",
"nodemon": "^1.14.11",
"pre-commit": "^1.2.2",
"rimraf": "^2.6.2",
"uglifyjs-webpack-plugin": "^1.1.6",
"vue-loader": "^13.7.0",
"vue-template-compiler": "^2.5.13",
"webpack": "^3.10.0"
}
}