-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
87 lines (87 loc) · 3.11 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
{
"name": "piping-ui",
"version": "0.17.0",
"private": true,
"author": "Ryo Ota <[email protected]> (https://github.com/nwtgck)",
"scripts": {
"serve": "npm run generate-files && concurrently -r 'vue-cli-service serve' 'npm run watch-build-sw'",
"build": "npm run generate-files && vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"build-sw": "cd src/service-worker && tsc",
"watch-build-sw": "npm run build-sw -- --watch",
"generate-files": "npm run generate-version && npm run generate-sitemap && npm run generate-robots-txt && npm run build-sw",
"generate-robots-txt": "ts-node --project scripts/tsconfig.json scripts/generate-robots-txt.tsx > public/robots.txt",
"generate-sitemap": "ts-node --project scripts/tsconfig.json scripts/generate-sitemap.tsx > public/sitemap.xml",
"generate-version": "cross-var echo \"export const VERSION = \\\"$npm_package_version\\\";\" > src/version.ts",
"postinstall": "license-checker --production --json > src/licenses.json"
},
"dependencies": {
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^2.0.10",
"@mattiasbuelens/web-streams-adapter": "^0.1.0",
"binconv": "^0.2.0",
"clipboard-copy": "^4.0.1",
"core-js": "^3.39.0",
"file-saver": "^2.0.5",
"file-type": "^16.5.3",
"filepond": "^4.31.4",
"jszip": "^3.10.1",
"jwk-thumbprint": "^0.1.4",
"linkify-string": "^4.0.2",
"linkifyjs": "^4.0.2",
"openpgp": "^5.11.2",
"register-service-worker": "^1.7.2",
"sanitize-html": "^2.13.1",
"smoothscroll-polyfill": "^0.4.4",
"url-join": "^4.0.1",
"vue": "^2.7.16",
"vue-filepond": "^6.0.3",
"vuetify": "^2.7.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@mdi/js": "^7.4.47",
"@types/chai": "^5.0.1",
"@types/clipboard": "^2.0.7",
"@types/file-saver": "^2.0.7",
"@types/mocha": "^10.0.8",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/sanitize-html": "^2.13.0",
"@types/smoothscroll-polyfill": "^0.3.4",
"@types/url-join": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-typescript": "^5.0.8",
"@vue/cli-plugin-unit-mocha": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^1.3.0",
"babel-eslint": "^10.1.0",
"buffer": "^6.0.3",
"chai": "^5.1.2",
"concurrently": "^9.0.1",
"cross-var": "^1.1.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^8.0.3",
"license-checker": "^25.0.1",
"material-design-icons-iconfont": "^6.7.0",
"process": "^0.11.10",
"react": "^18.3.0",
"react-dom": "^18.3.1",
"sass": "~1.32.0",
"sass-loader": "^10.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"vue-cli-plugin-vuetify": "^2.5.8",
"vuetify-loader": "^1.9.2"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nwtgck/piping-ui-web"
}
}