-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
74 lines (74 loc) · 2.51 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "cross-env NODE_ENV=production nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint-fix": "eslint --ext .js,.vue --fix --ignore-path .gitignore .",
"precommit": "npm run lint",
"knex": "knex",
"makedb": "knex migrate:latest && knex seed:run",
"remakedb": "rm -f dev.sqlite test.sqlite && npm run makedb",
"production": "npm run build && npm run production:makedb && npm run production:start",
"production:makedb": "cross-env NODE_ENV=production npm run makedb",
"production:start": "cross-env NODE_ENV=production pm2 --env production start ecosystem.config.js",
"test": "jest --maxWorkers=4",
"test:travis": "npm test && npm run lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.18",
"@fortawesome/free-solid-svg-icons": "^5.8.2",
"@fortawesome/vue-fontawesome": "^0.1.6",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/pwa": "^2.6.0",
"bookshelf": "^0.14.2",
"bookshelf-secure-password": "^3.1.0",
"detect-character-encoding": "^0.8.0",
"dotenv": "^8.0.0",
"fs-extra": "^8.1.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.13.0",
"koa": "^2.6.2",
"koa-body": "^4.1.0",
"koa-jwt": "^3.5.1",
"koa-router": "^7.4.0",
"mysql": "^2.17.1",
"nuxt": "^2.4.0",
"nuxt-buefy": "^0.3.6",
"nuxt-fontawesome": "^0.4.0",
"p-debounce": "^2.1.0",
"pdfkit": "^0.10.0",
"pg": "^7.11.0",
"pm2": "^3.5.1",
"rimraf": "^2.6.3",
"sqlite3": "^4.1.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^0.0.1",
"@vue/test-utils": "^1.0.0-beta.27",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.1.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"cross-env": "^5.2.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-config-standard": ">=12.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": ">=2.16.0",
"eslint-plugin-jest": ">=22.3.0",
"eslint-plugin-node": ">=8.0.1",
"eslint-plugin-nuxt": "^0.4.3",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": ">=4.0.1",
"eslint-plugin-standard": ">=4.0.0",
"eslint-plugin-vue": "^5.2.2",
"jest": "^24.1.0",
"nodemon": "^1.18.11",
"prettier": "^1.16.4",
"vue-jest": "^3.0.3"
}
}