-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "solid-bookstore-a",
"version": "0.0.1",
"description": "Segregated UI in Action with SolidJS",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"lint:types": "./node_modules/.bin/tsc",
"lint:es": "eslint ./src ./tests",
"format": "prettier --write ./src ./tests",
"test": "uvu tests tests.\\ts$ -i helpers -r solid-register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peerreynders/solid-bookstore-a.git"
},
"keywords": [],
"author": "Peer Reynders",
"license": "MIT",
"bugs": {
"url": "https://github.com/peerreynders/solid-bookstore-a/issues"
},
"homepage": "https://github.com/peerreynders/solid-bookstore-a#readme",
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"solid-register": "^0.2.5",
"typescript": "^4.6.4",
"uvu": "^0.5.3",
"vite": "^2.9.9",
"vite-plugin-solid": "^2.2.6"
},
"dependencies": {
"solid-app-router": "^0.3.3",
"solid-js": "^1.4.2"
},
"solid-register": {
"aliases": {
"solid": "browser"
}
}
}