-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
59 lines (59 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
59
{
"name": "fantom-on-fire",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"dev:mocked": "cross-env VITE_MOCK_LOCAL_SERVER=1 vite",
"build": "vite build",
"build:mocked": "cross-env VITE_MOCK_LOCAL_SERVER=1 vite build",
"preview": "vite preview --port 5050",
"test:unit": "vitest --environment jsdom",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"test": "vitest run --environment jsdom",
"test:watch": "vitest --environment jsdom",
"test:coverage": "vitest run --coverage",
"test:report": "vitest run --environment jsdom --reporter json --outputFile test_results.json",
"template": "plop",
"prepare": "husky install"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@vue/apollo-composable": "^4.0.0-alpha.16",
"@vueuse/core": "^8.3.0",
"bignumber.js": "^9.0.2",
"cross-fetch": "^3.1.5",
"dayjs": "^1.11.1",
"fantom-vue3-components": "^0.37.7",
"graphql": "^16.3.0",
"graphql-tag": "^2.12.6",
"vue": "^3.2.33"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@rushstack/eslint-patch": "^1.1.0",
"@vitejs/plugin-vue": "^4.5.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/test-utils": "^2.0.0-rc.20",
"cross-env": "^7.0.3",
"eslint": "^8.5.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^7.0.4",
"jsdom": "^19.0.0",
"lint-staged": "^12.3.8",
"msw": "^0.39.2",
"plop": "^3.0.5",
"prettier": "^2.5.1",
"sass": "^1.50.1",
"vite": "^5.0.2",
"vite-plugin-pwa": "^0.17.2",
"vitest": "^0.34.6"
},
"msw": {
"workerDirectory": "public"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs}": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}