-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 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
70
71
72
73
74
{
"name": "toy-maker",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --port 1111",
"build": "npm run generator&&vue-cli-service build",
"lint": "vue-cli-service lint",
"generator": "vue-cli-service build --formats umd-min --target lib --name generator src/components/generator/index.js --dest public/generator"
},
"dependencies": {
"@cloudbase/js-sdk": "^1.4.1",
"@lzq920/vue3-draggable-resizable": "^1.7.0",
"@octokit/rest": "^18.6.0",
"@tailwindcss/postcss7-compat": "npm:@tailwindcss/postcss7-compat@^2.0.2",
"@vueuse/core": "^6.3.3",
"animate.css": "^4.1.1",
"autoprefixer": "^9",
"canvas-confetti": "^1.4.0",
"core-js": "^3.6.5",
"croppie": "^2.6.5",
"dom-to-image": "^2.6.0",
"echarts": "^5.1.2",
"element-plus": "^1.1.0-beta.12",
"file-saver": "^2.0.5",
"js-base64": "^3.6.0",
"jszip": "^3.5.0",
"lodash": "^4.17.20",
"lottie-web": "^5.7.11",
"monaco-editor": "^0.27.0",
"normalize.css": "^8.0.1",
"npm": "7.6.1",
"nunjucks": "^3.2.2",
"postcss": "^7",
"psd.js": "^3.3.17",
"register-service-worker": "^1.7.1",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.2",
"vue": "^3.1.1",
"vue-router": "^4.0.9",
"vuex": "^4.0.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.12",
"@vue/cli-plugin-eslint": "^4.5.12",
"@vue/cli-plugin-pwa": "^4.5.12",
"@vue/cli-plugin-router": "^4.5.12",
"@vue/cli-plugin-vuex": "^4.5.12",
"@vue/cli-service": "^4.5.12",
"@vue/compiler-sfc": "^3.1.1",
"@vue/eslint-config-standard": "^6.0.0",
"babel-eslint": "^10.1.0",
"dayjs": "^1.10.5",
"eslint": "7.21.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "5.0.0",
"eslint-plugin-vue": "^7.0.0-0",
"lint-staged": "10.5.4",
"monaco-editor-webpack-plugin": "^4.0.0",
"sass": "^1.35.1",
"sass-loader": "10.x",
"vue-cli-plugin-tailwind": "^2.0.6"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}