forked from ezpaarse-project/analogist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.5 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": "ang-api",
"version": "1.1.0",
"description": "Nuxt.js project",
"author": "Yannick Schurter <yannick.schurter@gmail.com>",
"private": true,
"scripts": {
"dev": "nodemon -w server.js -w app.js -w nuxt.config.js -w api/ -w lib/ server.js",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server.js",
"precommit": "npm run lint",
"test": "mocha",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"patch-version": "sed -i \"s#\\(image: ezpaarseproject/analogist:\\)\\([\\.a-z0-9]\\+\\)#\\1${npm_package_version}#g\" docker-compose.yml",
"version": "npm run patch-version && git add docker-compose.yml"
},
"dependencies": {
"axios": "~0.15.3",
"body-parser": "~1.17.1",
"config": "~1.25.1",
"connect-mongo": "~1.3.2",
"cross-env": "~3.1.4",
"deep-equal": "~1.0.1",
"express": "~4.14.0",
"express-session": "~1.15.1",
"grant-express": "~3.7.1",
"moment": "~2.18.1",
"mongodb": "~2.2.25",
"morgan": "~1.8.1",
"nodemailer": "~3.1.8",
"nuxt": "~0.10.7",
"request": "~2.81.0",
"vue-i18n": "~6.1.1",
"vuedraggable": "~2.10.0",
"vuetify": "~0.11.1"
},
"devDependencies": {
"chai": "~3.5.0",
"eslint": "~3.13.1",
"eslint-config-standard": "~6.2.1",
"eslint-plugin-html": "~1.7.0",
"eslint-plugin-promise": "~3.5.0",
"eslint-plugin-standard": "~2.0.1",
"husky": "~0.13.2",
"mocha": "~3.2.0",
"nodemon": "~1.11.0",
"supertest": "~3.0.0"
}
}