forked from eugene-khyst/artistassistapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.75 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
{
"name": "artistassistapp",
"version": "1.0.0",
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"calc-reflectance": "ts-node src/bin/reflectance-calculator.ts src/data && prettier --write src/data/**/*.json",
"start": "parcel serve src/index.html",
"build": "parcel build src/index.html",
"format": "prettier --write src",
"lint": "eslint --ext .js,.ts src",
"lint:fix": "npm run lint -- --fix",
"check": "tsc --noEmit -p ./src/tsconfig.json",
"test": "npm run lint && npm run check",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@fontsource/kalam": "^5.0.8",
"@tanstack/react-query": "^4.36.1",
"antd": "^5.10.0",
"comlink": "^4.4.1",
"idb": "^7.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-sticky-box": "^2.0.4",
"usehooks-ts": "^2.9.1"
},
"devDependencies": {
"@parcel/config-default": "^2.10.0",
"@parcel/optimizer-esbuild": "^2.10.0",
"@parcel/transformer-raw": "^2.10.0",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-license-header": "^0.6.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"parcel": "^2.10.0",
"parcel-reporter-static-files-copy": "^1.5.3",
"prettier": "^3.0.3",
"process": "^0.11.10",
"ts-node": "^10.9.1"
},
"lint-staged": {
"**/*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{css,html}": "prettier --write"
},
"license": "Apache-2.0"
}