forked from codeforjapan/StudyAtHome
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.58 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "StudyAtHome",
"version": "1.0.0",
"description": "Ouchi De Jikanwari Web Version",
"author": "Nekoya3",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt-ts",
"build": "yarn prebuild && nuxt-ts build",
"prebuild": "node pre_build_script/swEnvBuild.js",
"test:unit": "jest --config jest.config.js",
"start": "nuxt-ts start",
"generate": "nuxt-ts generate",
"lint": "eslint --ext .js,.vue,.ts --ignore-path .eslintignore ."
},
"lint-staged": {
"*.{js,ts,css,vue}": [
"eslint --fix"
],
"*.{css,scss,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@babel/core": "^7.10.5",
"@babel/runtime-corejs3": "^7.10.5",
"@nuxt/typescript-runtime": "^1.0.0",
"@nuxtjs/axios": "^5.12.0",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/pwa": "^3.0.0-beta.20",
"@types/js-cookie": "^2.2.6",
"@types/jwt-decode": "^2.2.1",
"@types/node": "^14.0.23",
"cookieparser": "^0.1.0",
"core-js": "3.6.5",
"cross-env": "^7.0.2",
"date-fns": "^2.15.0",
"dayjs": "^1.8.29",
"express": "^4.17.1",
"firebase": "7.16.1",
"firebase-admin": "^9.0.0",
"google-auth-library": "^6.0.5",
"js-cookie": "^2.2.1",
"jwt-decode": "^2.2.0",
"lodash.clonedeep": "^4.5.0",
"nuxt": "^2.13.3",
"nuxt-property-decorator": "^2.7.2",
"nuxt-svg-loader": "^1.2.0",
"nuxt-webfontloader": "^1.1.0",
"uuid": "^8.2.0",
"vue-property-decorator": "^9.0.0",
"vuex": "^3.5.1",
"vuex-class-component": "^2.3.4",
"vuex-persistedstate": "^3.0.1"
},
"devDependencies": {
"@nuxt/typescript-build": "^2.0.0",
"@nuxtjs/eslint-config-typescript": "^2.0.0",
"@nuxtjs/stylelint-module": "^4.0.0",
"@nuxtjs/vuetify": "^1.11.2",
"@types/jest": "^26.0.4",
"@vue/test-utils": "^1.0.3",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.1.0",
"cpx": "^1.5.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-tsdoc": "^0.2.5",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"nodemon": "^2.0.4",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"sass-loader": "^9.0.2",
"stylelint": "^13.6.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0",
"ts-jest": "^26.1.3",
"vue": "^2.6.11",
"vue-jest": "^3.0.6",
"vue-template-compiler": "^2.6.11"
}
}