-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.09 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
{
"name": "northwest_discovery_water_trail_map",
"version": "1.0.1 ",
"author": {
"name": "Ivan Storck",
"email": "[email protected]",
"url": "https://github.com/ivanoats"
},
"type": "module",
"private": true,
"license": "MIT",
"scripts": {
"commit": "cz",
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"lint": "eslint src --ext .tsx --ext .ts",
"lint:fix": "npm run lint --fix",
"format": "prettier --config ./.prettierrc -w 'src/**/*.{tsx,ts}' && git update-index --again",
"pretest": "npm run lint:fix",
"test": "jest --colors --passWithNoTests",
"posttest": "npx http-server coverage/lcov-report",
"test:watch": "npm run test --collectCoverage=false --watch",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^2.2.3",
"@chakra-ui/react": "^2.9.5",
"@chakra-ui/system": "^2.6.2",
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"framer-motion": "^10.16.16",
"ol": "^10.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.25.7",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.3.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.2",
"vite": "^5.4.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}