-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.66 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
{
"name": "prodtest-web",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint": "yarn lint:js",
"test": "jest",
"commit": "git-cz",
"build:prod": "yarn install --prefer-offline --frozen-lockfile --non-interactive --production=false && yarn build && rm -rf node_modules && NODE_ENV=production yarn install --prefer-offline --pure-lockfile --non-interactive --production=true",
"start:prod": "nuxt start --hostname 0.0.0.0 --port 3000"
},
"dependencies": {
"@nuxtjs/auth-next": "5.0.0-1637745161.ea53f98",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/dayjs": "^1.4.1",
"@nuxtjs/i18n": "^7.2.0",
"@nuxtjs/toast": "^3.3.1",
"ajv": "^8.8.2",
"axios": "^0.24.0",
"core-js": "^3.15.1",
"git-cz": "^4.8.0",
"nuxt": "^2.15.7",
"secure-json-parse": "^2.4.0",
"vue-codemirror": "^4.0.6",
"vue-tailwind": "^2.5.0",
"vuedraggable": "^2.24.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@nuxtjs/eslint-config": "^6.0.1",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/tailwindcss": "^4.2.0",
"@tailwindcss/forms": "^0.5.3",
"@vue/test-utils": "^1.2.1",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^27.0.5",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^7.12.1",
"jest": "^27.0.5",
"postcss": "^8.3.5",
"prettier": "^2.3.2",
"sass": "^1.45.0",
"sass-loader": "10",
"vue-jest": "^3.0.4"
}
}