-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
60 lines (60 loc) · 1.67 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
{
"name": "siliwiz",
"license": "Apache-2.0",
"scripts": {
"dev": "vinxi dev",
"lint": "eslint --ext .ts,.tsx .",
"build": "vinxi build --preset static",
"format:check": "prettier --check **/*.{ts,js,css,tsx} !dist/** !node_modules/** !.solid/** !**/spice.js",
"start": "vinxi start",
"postinstall": "patch-package",
"prepare": "husky install"
},
"type": "module",
"devDependencies": {
"@cloudflare/workers-types": "^4.20230115.0",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-replace": "^5.0.0",
"@suid/vite-plugin": "^0.1.5",
"@types/node": "^18.11.18",
"@types/three": "^0.149.0",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^33.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-solid": "^0.14.3",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"patch-package": "^6.4.7",
"prettier": "^2.8.3",
"typescript": "^4.9.5"
},
"dependencies": {
"@solidjs/start": "^1.0.6",
"@suid/icons-material": "^0.6.9",
"@suid/material": "^0.14.2",
"@types/plotly.js-basic-dist": "^1.54.1",
"json-beautify": "^1.1.1",
"plotly.js-basic-dist": "^2.15.1",
"solid-js": "^1.8.22",
"solid-record": "^0.2.1",
"three": "^0.149.0",
"vinxi": "^0.4.3"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{js,css}": [
"prettier --write"
]
},
"engines": {
"node": ">=16"
}
}