-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.97 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
71
72
73
74
75
76
77
78
{
"name": "proteus-xml-drawing",
"version": "1.6.4",
"author": "vegar.ringdal@gmail.com",
"scripts": {
"start": "run-p -s -l start:*",
"start:vite": "vite",
"start:typecheck": "npm run typecheck:watch",
"build": "vite build",
"lint": "eslint ./src/**/*.{ts,tsx}",
"lint:fix": "eslint --fix ./src/**/*.{ts,tsx}",
"test": "jest",
"test:watch": "jest --watch",
"prettier": "run-s -s -n prettier:*",
"prettier:json": "prettier --write \"./**/*.json\"",
"prettier:ts": "prettier --write \"./**/*.ts\"",
"prettier:js": "prettier --write \"./**/*.js\"",
"prettier:tsx": "prettier --write \"./**/*.tsx\"",
"typecheck": "node ./scripts/typecheck.js",
"typecheck:watch": "node ./scripts/typecheck_watch.js",
"ci": "run-s -s -n ci:*",
"ci:test": "npm run test",
"ci:lint": "npm run lint",
"ci:typecheck": "node ./scripts/typecheck",
"docker:build": "node ./scripts/buildDocker",
"docker:push": "node ./scripts/pushDocker",
"docker:run": "node ./scripts/runDocker",
"release": "standard-version",
"release:test": "standard-version --dry-run",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"release:major": "standard-version --release-as major",
"release:next": "standard-version --prerelease next",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@headlessui/react": "^1.7.17",
"@types/jest": "^29.5.11",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.16",
"bs-logger": "^0.2.6",
"esbuild": "^0.19.11",
"esbuild-helpers": "^1.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lodash.memoize": "^4.1.2",
"npm-run-all": "^4.1.5",
"paper": "^0.12.17",
"postcss": "^8.4.33",
"prettier": "^3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"standard-version": "^9.5.0",
"tailwindcss": "^3.4.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"zustand": "^4.4.7",
"@simple-html/datasource": "^4.0.1",
"@simple-html/grid": "^4.0.1"
}
}