-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "move-it-nuxt",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt-ts",
"build": "nuxt-ts build",
"start": "nuxt-ts start",
"generate": "nuxt-ts generate",
"lint": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore .",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --collectCoverage"
},
"dependencies": {
"@nuxt/typescript-runtime": "^2.0.1",
"cookie-universal-nuxt": "^2.1.4",
"core-js": "^3.8.3",
"nuxt": "^2.14.12"
},
"devDependencies": {
"@nuxt/types": "^2.14.12",
"@nuxt/typescript-build": "^2.0.4",
"@nuxtjs/eslint-config-typescript": "^5.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/tailwindcss": "^3.4.2",
"@types/jest": "^26.0.20",
"@vue/test-utils": "^1.1.2",
"autoprefixer": "^9",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.18.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-vue": "^7.5.0",
"jest": "^26.6.3",
"postcss": "^7",
"tailwindcss": "npm:@tailwindcss/postcss7-compat",
"ts-jest": "^26.4.4",
"vue-jest": "^3.0.4"
}
}