-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2.15 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
{
"name": "trakr.app",
"license": "MIT",
"version": "0.0.23",
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"prod": "git pull && yarn install && yarn build && pm2 delete trakr && pm2 start ecosystem.config.js --env production && pm2 monit",
"release": "conventional-changelog -p conventionalcommits -i ./content/CHANGELOG.md -s -r 0",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint": "yarn lint:js",
"lintfix": "yarn lint:js --fix",
"pm2:prod": "pm2 start ecosystem.config.js --env production",
"pm2:dev": "pm2 restart ecosystem.config.js --env development"
},
"dependencies": {
"@nuxt/content": "^1.15.1",
"@nuxtjs/auth-next": "^5.0.0-1637745161.ea53f98",
"@nuxtjs/axios": "^5.13.6",
"babel-register": "^6.26.0",
"binary-parser": "^2.0.2",
"cookie-universal-nuxt": "^2.1.5",
"core-js": "^3.20.3",
"express": "^4.17.2",
"fs": "^0.0.1-security",
"ipaddr.js": "^2.0.1",
"jsonwebtoken": "^8.5.1",
"lil-gui": "^0.16.0",
"lodash-es": "^4.17.21",
"msgpackr": "^1.5.2",
"nuxt": "^2.15.8",
"nuxt-highlightjs": "^1.0.1",
"nuxt-lazy-load": "^1.2.9",
"nuxt-social-meta": "^1.0.0",
"nuxt-socket-io": "^2.0.0",
"pg": "^8.7.1",
"prism-themes": "^1.9.0",
"prismjs": "^1.26.0",
"sequelize": "^6.12.1",
"socket.io": "^4.4.0",
"standard-version": "^9.3.2",
"three": "^0.135.0",
"touch-position": "^2.0.0",
"tx2": "^1.0.5",
"vue": "^2.6.14",
"vue-prism-editor": "^1.3.0",
"vue-server-renderer": "^2.6.14",
"vue-template-compiler": "^2.6.14",
"vue-toastification": "^1.7.14",
"vuescroll": "^4.17.3",
"vuetify": "^2.6.1",
"webpack": "^4.46.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.3",
"@nuxtjs/eslint-config": "^8.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/vuetify": "^1.12.3",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.4.1",
"eslint-plugin-nuxt": "^3.1.0",
"eslint-plugin-vue": "^8.2.0",
"sequelize-cli": "^6.4.1"
}
}