-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.2 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
{
"name": "tanaka.world",
"version": "1.0.0",
"description": "The TANAKA WORLD",
"author": "tanakaworld",
"private": true,
"scripts": {
"dev": "NODE_ENV=development nuxt-ts",
"build": "NODE_ENV=production nuxt-ts build",
"start": "NODE_ENV=production nuxt-ts start",
"generate": "NODE_ENV=production nuxt-ts export",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:js -- --fix",
"lint:js": "eslint --ext .js,.ts,.vue --ignore-path .gitignore .",
"e2e:local": "start-server-and-test start http://localhost:3000 'cypress open'",
"e2e:ci": "CYPRESS_video=true start-server-and-test start http://localhost:3000 'cypress run'",
"e2e:generate": "npm run generate -- --fail-on-error",
"serve": "firebase serve --only hosting",
"deploy": "firebase use tanaka-world && firebase deploy --only hosting",
"prepare": "husky install"
},
"config": {
"nuxt": {
"host": "0.0.0.0",
"port": "3000"
}
},
"lint-staged": {
"*.{js,ts,vue}": "eslint"
},
"dependencies": {
"@nuxt/typescript-runtime": "2.1.0",
"@nuxtjs/google-analytics": "2.4.0",
"color-convert": "2.0.1",
"cross-env": "7.0.3",
"normalize.css": "8.0.1",
"nuxt": "2.15.8",
"nuxt-i18n": "6.28.1",
"randomcolor": "0.6.2",
"vue-i18n": "8.26.5",
"vuex-typescript-fsa": "0.4.0"
},
"devDependencies": {
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "13.2.0",
"@cypress/webpack-preprocessor": "5.12.2",
"@nuxt/types": "2.15.8",
"@nuxt/typescript-build": "2.1.0",
"@nuxtjs/eslint-config": "6.0.1",
"@nuxtjs/eslint-config-typescript": "6.0.1",
"@nuxtjs/eslint-module": "3.1.0",
"@testing-library/cypress": "8.0.3",
"@vue/test-utils": "1.3.0",
"babel-eslint": "10.1.0",
"cypress": "9.7.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-nuxt": "2.0.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-vue": "7.20.0",
"fork-ts-checker-webpack-plugin": "6.5.2",
"husky": "7.0.4",
"lint-staged": "12.5.0",
"prettier": "2.6.0",
"start-server-and-test": "1.14.0",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.7.4"
}
}