generated from onebeyond/open-source-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.9 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
{
"name": "chapter-spain-web-frontend",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"coverage": "vitest run --coverage",
"new:component": "hygen component new",
"new:page": "hygen page new",
"eslint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"eslint:fix": "eslint ./src --ext .js,.jsx,.ts,.tsx --fix",
"check-deps": "npx @guidesmiths/license-checker --outputFileName COPYRIGHT --failOn /AGPL*/",
"postinstall": "npm run check-deps",
"prepare": "husky install"
},
"dependencies": {
"axios": "^1.6.2",
"i18next": "^22.5.1",
"localforage": "^1.10.0",
"match-sorter": "^6.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^12.3.1",
"react-router-dom": "^6.20.0",
"sort-by": "^0.0.2",
"styled-components": "^6.1.1"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@guidesmiths/license-checker": "~2.1.0",
"@playwright/test": "^1.40.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/react": "^18.2.39",
"@types/react-dom": "^18.2.17",
"@types/styled-components": "^5.1.32",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/coverage-istanbul": "^0.34.6",
"cross-env": "^7.0.3",
"eslint": "^8.54.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"hygen": "^6.2.11",
"jsdom": "^23.0.0",
"msw": "^2.0.9",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6"
}
}