-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.46 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
75
76
77
78
{
"name": "vue-ts-tailwind",
"version": "1.0.0",
"description": "Testing project",
"author": "Harry Tran",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt-ts",
"build": "nuxt-ts build",
"start": "cross-env NODE_ENV=production nuxt-ts start",
"generate": "yarn lint:eslint && nuxt-ts generate",
"lint:eslint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:eslint:fix": "eslint --ext .js,.vue --ignore-path .gitignore . --fix",
"lint:stylelint": "stylelint --fix",
"lint:prettier": "prettier --write --loglevel warn",
"test": "jest",
"test:ci": "node --expose-gc node_modules/jest/bin/jest --forceExit --bail --colors --logHeapUsage --maxWorkers=2 --ci --no-cache",
"clean:sources": "rimraf ./node_modules/.cache/hard-source"
},
"engines": {
"node": ">=10.19.0"
},
"gitHooks": {
"pre-commit": "ls-lint && cross-env PRE_COMMIT=true lint-staged",
"commit-msg": "node scripts/verifyCommitMsg.js"
},
"dependencies": {
"@nuxt/typescript-runtime": "0.4.10",
"@nuxtjs/axios": "5.11.0",
"@nuxtjs/dotenv": "1.4.1",
"@nuxtjs/pwa": "3.0.0-beta.20",
"compression": "1.7.4",
"cross-env": "7.0.2",
"express": "4.17.1",
"nuxt": "2.13.0",
"nuxt-property-decorator": "2.7.2"
},
"devDependencies": {
"@ls-lint/ls-lint": "1.8.1",
"@nuxt/typescript-build": "1.0.3",
"@nuxtjs/eslint-config-typescript": "2.0.0",
"@nuxtjs/eslint-module": "2.0.0",
"@nuxtjs/stylelint-module": "4.0.0",
"@nuxtjs/tailwindcss": "2.0.0",
"@nuxtjs/vuetify": "1.11.2",
"@types/compression": "1.7.0",
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "3.3.0",
"@typescript-eslint/parser": "2.34.0",
"@vue/test-utils": "1.0.3",
"babel-eslint": "10.1.0",
"babel-jest": "26.0.1",
"chalk": "4.0.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-nuxt": "1.0.0",
"eslint-plugin-prettier": "3.1.4",
"imagemin-lint-staged": "0.4.0",
"jest": "24.9.0",
"lint-staged": "10.2.10",
"node-sass": "4.14.1",
"nodemon": "2.0.4",
"prettier": "2.0.5",
"rimraf": "^3.0.2",
"sass-loader": "8.0.2",
"stylelint": "13.6.1",
"stylelint-config-prettier": "8.0.1",
"stylelint-config-standard": "20.0.0",
"stylelint-scss": "3.17.2",
"ts-jest": "26.1.0",
"vue-jest": "4.0.0-beta.2",
"yorkie": "2.0.0"
},
"browserslist": [
"defaults",
"ie >=11"
]
}