-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 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
{
"name": "chimptime",
"private": true,
"version": "0.1.0",
"type": "module",
"source": "index.html",
"@parcel/resolver-default": {
"packageExports": true
},
"scripts": {
"dev": "parcel",
"build": "tsc && parcel build --public-url /",
"lint": "biome lint src && stylelint \"src/**/*.css\"",
"format": "biome check --apply src && stylelint \"src/**/*.css\" --fix",
"serve": "serve -s dist"
},
"dependencies": {
"@phosphor-icons/react": "^2.0.15",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-toolbar": "^1.0.4",
"@radix-ui/themes": "^2.0.3",
"cubing": "^0.46.1",
"dexie": "^3.2.4",
"dexie-react-hooks": "^1.1.7",
"papaparse": "^5.4.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
"serve": "^14.2.1"
},
"devDependencies": {
"@biomejs/biome": "^1.5.2",
"@parcel/watcher": "^2.4.0",
"@stylistic/stylelint-plugin": "^2.0.0",
"@types/node": "^20.11.5",
"@types/papaparse": "^5.3.14",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"events": "^3.3.0",
"os-browserify": "^0.3.0",
"parcel": "^2.11.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"stylelint": "^16.2.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "^5.2.2"
},
"optionalDependencies": {
"@parcel/watcher-linux-x64-glibc": "^2.4.0"
}
}