-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.55 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": "type-signature-com",
"version": "1.0.0",
"description": "Type signature game",
"author": "andys8",
"license": "ISC",
"homepage": "https://andys8.github.io/type-signature-com",
"source": "src/index.html",
"scripts": {
"postinstall": "spago install",
"start": "concurrently -k npm:start:*",
"start:spago": "spago build --watch --clear-screen",
"start:parcel": "parcel serve -p 3000 --open",
"build": "spago build && parcel build",
"test": "spago -x test.dhall test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andys8/type-signature-com.git"
},
"devDependencies": {
"@parcel/packager-raw-url": "^2.6.2",
"@parcel/packager-xml": "^2.6.2",
"@parcel/transformer-raw": "^2.6.2",
"concurrently": "^7.3.0",
"esbuild": "^0.14.49",
"parcel": "^2.6.2",
"parcel-config-pwa-manifest": "^0.1.2",
"parcel-transformer-ogimage": "^1.0.3",
"postcss": "^8.4.14",
"purescript": "^0.15.4",
"spago": "^0.20.9",
"tailwindcss": "^3.1.6"
},
"dependencies": {
"canvas-confetti": "^1.5.1",
"daisyui": "^2.19.1",
"firacode": "^6.2.0",
"react-daisyui": "^2.1.0",
"react-hotkeys-hook": "^3.4.7",
"react-icons": "^4.4.0"
},
"pwaManifest": {
"name": "type-signature.com - Type Signature Game",
"shortName": "Type Signature",
"startURL": "/",
"theme": "#272935",
"generateIconOptions": {
"baseIcon": "./public/icon.png",
"sizes": [
192,
384,
512
],
"genFavicons": true
}
}
}