-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.94 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
92
93
94
{
"name": "toybox",
"version": "1.0.0",
"private": true,
"engines": {
"node": "16.x",
"yarn": "1.x"
},
"scripts": {
"dev": "nuxt",
"dev:host": "nuxt --hostname 0.0.0.0 --port 3000",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"start:host": "nuxt start --hostname 0.0.0.0 --port 3000",
"generate:host": "nuxt generate --hostname 0.0.0.0 --port 3000",
"storybook": "nuxt storybook",
"build-storybook": "nuxt storybook build",
"lint:js": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint": "yarn lint:js",
"test": "jest",
"aspida": "npx openapi2aspida -i https://kodomobeya.compositecomputer.club/openapi.json",
"aspida:local": "npx openapi2aspida -i http://localhost:8000/openapi.json"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-regular-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/vue-fontawesome": "^2.0.9",
"@nuxt/typescript-runtime": "^2.1.0",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/composition-api": "^0.33.1",
"@nuxtjs/google-gtag": "^1.0.4",
"@types/file-saver": "^2.0.5",
"@types/prismjs": "^1.26.0",
"@types/three": "^0.146.0",
"clipboard": "^2.0.11",
"core-js": "^3.26.1",
"dayjs": "^1.11.6",
"file-saver": "^2.0.5",
"github-markdown-css": "^5.1.0",
"katex": "^0.16.4",
"markdown-it": "^13.0.1",
"markdown-it-texmath": "^1.0.0",
"mavon-editor": "^2.10.4",
"nuxt": "^2.15.8",
"nuxt-fontawesome": "^0.4.0",
"nuxt-property-decorator": "^2.9.1",
"prismjs": "^1.29.0",
"swiper": "^8.4.5",
"three": "^0.146.0",
"tsparticles": "^2.5.3",
"vue2-particles": "^2.5.3",
"vuex-module-decorators": "^2.0.0",
"vuex-persistedstate": "^4.1.0"
},
"devDependencies": {
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/device": "2.2.0",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/storybook": "^4.3.2",
"@nuxtjs/style-resources": "^1.2.1",
"@nuxtjs/tailwindcss": "^6.1.3",
"@storybook/addon-actions": "^6.5.13",
"@storybook/addon-viewport": "^6.5.13",
"@storybook/addons": "^6.5.13",
"@types/katex": "^0.16.0",
"@types/markdown-it": "^12.2.3",
"@vue/test-utils": "^2.2.4",
"autoprefixer": "^10.4.13",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.3.1",
"eslint": "^8.28.0",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-vue": "^9.8.0",
"jest": "^29.3.1",
"postcss": "^8.4.19",
"sass": "^1.56.1",
"sass-loader": "^10.1.1",
"storybook-addon-vue-info": "^1.4.2",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.0.3",
"video.js": "^8.3.0",
"vue-jest": "^3.0.7"
},
"volta": {
"node": "16.20.0",
"yarn": "1.22.19"
}
}