-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.57 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
{
"name": "opex-template",
"version": "1.2.0",
"description": "A full stack app template for the G5 OpEx team.",
"author": "David Miller & Tyler Hasenoehrl",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"docker:build": "docker build -t opex-template . --build-arg NPM_TOKEN=$NPM_TOKEN",
"helm:upgrade": "helm upgrade opex-template ./chart/nuxt",
"build": "nuxt build",
"build:analyze": "nuxt build --analyze",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"test": "jest"
},
"dependencies": {
"@cloudnative/health-connect": "^2.1.0",
"@google-cloud/pubsub": "^2.5.0",
"@nuxtjs/axios": "^5.12.0",
"@nuxtjs/google-analytics": "^2.4.0",
"body-parser": "^1.19.0",
"bootstrap": "^4.5.0",
"bootstrap-vue": "^2.15.0",
"bull": "^3.18.0",
"cross-env": "^5.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jquery": "^3.5.1",
"nuxt": "^2.13.3",
"path": "^0.12.7",
"pg": "^7.18.2",
"sequelize": "^5.22.3"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-module": "^1.2.0",
"@vue/test-utils": "^1.0.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^26.1.0",
"eslint": "^6.1.0",
"eslint-plugin-nuxt": "^1.0.0",
"jest": "^26.1.0",
"node-sass": "^4.14.1",
"nodemon": "^1.18.9",
"sass-loader": "^8.0.2",
"vue-jest": "^3.0.6"
}
}