forked from nwtgck/piping-ui-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.83 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.83 KB
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
95
{
"name": "piping-ui",
"version": "0.6.13",
"private": true,
"author": "Ryo Ota <nwtgck@nwtgck.org> (https://github.com/nwtgck)",
"scripts": {
"serve": "npm run generate-files && vue-cli-service serve",
"build": "npm run generate-files && vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"build-sw": "webpack --config src/service-worker/webpack.config.js src/service-worker/src/sw.ts",
"copy-openpgp": "copyfiles --flat node_modules/openpgp/dist/*.min.js public/openpgp",
"generate-files": "npm run generate-version && npm run generate-sitemap && npm run generate-robots-txt && npm run copy-openpgp && 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",
"real-serve": "watch-build-serve -i=dist -i=.idea -i=./node_modules -i=.git -i=src/version.ts -i src/service-worker/dist -i public/openpgp -i src/licenses.json -i public/sitemap.xml -i public/robots.txt"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-brands-svg-icons": "^5.13.0",
"@fortawesome/vue-fontawesome": "^0.1.9",
"@mattiasbuelens/web-streams-adapter": "0.1.0-alpha.3",
"binconv": "^0.2.0",
"clipboard": "^2.0.6",
"core-js": "^3.6.4",
"file-saver": "^2.0.2",
"file-type": "^14.1.4",
"filepond": "^4.13.1",
"jszip": "^3.3.0",
"jwk-thumbprint": "^0.1.3",
"linkifyjs": "^2.1.8",
"openpgp": "^4.10.1",
"register-service-worker": "^1.7.1",
"sanitize-html": "^1.22.1",
"smoothscroll-polyfill": "^0.4.4",
"ts-json-validator": "git+https://github.com/nwtgck/ts-json-validator.git#v0.1.2",
"url-join": "^4.0.1",
"vue": "^2.6.11",
"vue-async-computed": "^3.8.2",
"vue-async-computed-decorator": "0.0.4",
"vue-class-component": "^7.2.3",
"vue-filepond": "^6.0.2",
"vue-property-decorator": "^8.4.1",
"vuetify": "^2.2.21"
},
"devDependencies": {
"@mdi/js": "^5.0.45",
"@types/chai": "^4.2.11",
"@types/clipboard": "^2.0.1",
"@types/file-saver": "^2.0.1",
"@types/jszip": "^3.1.7",
"@types/mocha": "^7.0.2",
"@types/openpgp": "^4.4.9",
"@types/react": "^16.9.33",
"@types/react-dom": "^16.9.6",
"@types/sanitize-html": "^1.22.0",
"@types/smoothscroll-polyfill": "^0.3.1",
"@types/url-join": "^4.0.0",
"@types/workbox-sw": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"@vue/cli-plugin-babel": "~4.3.1",
"@vue/cli-plugin-eslint": "~4.3.1",
"@vue/cli-plugin-pwa": "~4.3.1",
"@vue/cli-plugin-typescript": "~4.3.1",
"@vue/cli-plugin-unit-mocha": "~4.3.1",
"@vue/cli-service": "~4.3.1",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^1.0.0-beta.32",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"copyfiles": "^2.2.0",
"cross-var": "^1.1.0",
"eslint": "^6.7.2",
"eslint-plugin-vue": "^6.2.2",
"license-checker": "^25.0.1",
"material-design-icons-iconfont": "^5.0.1",
"react": "^16.13.1",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"typescript": "~3.8.3",
"vue-cli-plugin-vuetify": "^2.0.5",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.4.3",
"watch-build-serve": "github:nwtgck/watch-build-serve-node#afc757410b3339e1603916ab98b8e5760569dbaa",
"webpack-cli": "^3.3.11"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nwtgck/piping-ui-web"
}
}