forked from simonwep/ocular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.99 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
{
"name": "ocular",
"private": true,
"type": "module",
"version": "0.0.0",
"license": "MIT",
"author": "Simon Reinisch <trash@reinisch.io>",
"engines": {
"node": "^18.12.0",
"npm": "^9.1.2 || ^8.19.2"
},
"scripts": {
"dev": "vite --host",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview",
"lint:src": "eslint '{scripts,src}/**/*.{js,ts,vue}' --no-error-on-unmatched-pattern",
"lint:src:fix": "npm run lint:src -- --fix",
"lint:i18n": "li18nt 'src/i18n/locales/*.json' --config src/i18n/.li18ntrc",
"lint:i18n:fix": "npm run lint:i18n -- --fix",
"lint": "npm run lint:i18n && npm run lint:src",
"lint:fix": "npm run lint:i18n:fix && npm run lint:src:fix",
"test:ci": "npm run build && npm run lint:fix",
"gen:icons": "node scripts/icons.js"
},
"dependencies": {
"@popperjs/core": "^2.11.6",
"ackee-tracker": "^5.1.0",
"echarts": "^5.4.1",
"li18nt": "^5.0.0",
"papaparse": "^5.3.2",
"vue": "^3.2.45",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6",
"yuppee": "^0.2.0"
},
"devDependencies": {
"@types/ackee-tracker": "^5.0.2",
"@types/node": "^18.11.12",
"@types/papaparse": "^5.3.5",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"@vitejs/plugin-vue": "^3.2.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.8.0",
"prettier": "^2.8.1",
"sass": "^1.56.2",
"typescript": "^4.9.4",
"vite": "^3.2.5",
"vite-plugin-optimize-css-modules": "^1.0.2",
"vite-plugin-pwa": "^0.13.3",
"vite-tsconfig-paths": "^3.6.0",
"vue-tsc": "^1.0.12"
}
}