forked from PygmalionAI/galatea-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.7 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
{
"name": "galatea-ui",
"version": "0.1.0",
"description": "The official Pygmalion front-end.",
"scripts": {
"start": "NODE_ENV=dev parcel src/index.html",
"start:win": "set NODE_ENV=dev && parcel src/index.html",
"build": "NODE_ENV=production parcel build src/index.html",
"style": "prettier src --check",
"style:fix": "prettier src --write",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"typecheck": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": {
"name": "0x000011b",
"email": "[email protected]",
"url": "https://github.com/0x000011b"
},
"license": "AGPL-3.0",
"dependencies": {
"@solidjs/router": "^0.6.0",
"@tanstack/solid-query": "^4.24.4",
"js-cookie": "^3.0.1",
"lodash": "^4.17.21",
"lucide-solid": "0.105.0-alpha.9",
"showdown": "^2.1.0",
"solid-js": "^1.6.9"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@types/js-cookie": "^3.0.2",
"@types/lodash": "^4.14.191",
"@types/node": "^18.13.0",
"@types/showdown": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"babel-preset-solid": "^1.6.9",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-solid": "^0.9.3",
"eslint-plugin-tailwindcss": "^3.8.0",
"parcel": "^2.8.2",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.1",
"solid-refresh": "^0.4.2",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4"
}
}