forked from Al-un/learn-nuxt-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.06 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
{
"name": "nuxt-ts",
"version": "1.0.0",
"description": "TypeScript powered Nuxt tutorial",
"author": "Al-un",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"heroku-postbuild": "nuxt build",
"test": "jest",
"lint": "eslint . --ext .vue,.ts,.js",
"start": "nuxt start",
"generate": "nuxt generate"
},
"dependencies": {
"@nuxt/typescript-build": "^0.3.2",
"@nuxtjs/style-resources": "^1.0.0",
"cross-env": "^6.0.3",
"node-sass": "^4.13.0",
"nuxt": "^2.10.2",
"nuxt-property-decorator": "^2.5.0",
"sass-loader": "^8.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@types/lodash": "^4.14.144",
"@typescript-eslint/eslint-plugin": "^2.5.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-vue": "^5.2.3",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"prettier": "^1.18.2",
"surge": "^0.21.3",
"ts-jest": "^24.1.0",
"vue-jest": "^3.0.5"
}
}