-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.76 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
{
"name": "turboslug",
"version": "1.0.0",
"description": "A fast offline first magic the gathering deck builder",
"scripts": {
"build": "vite build",
"watch": "vite build --watch",
"serve": "firebase serve",
"cards": "ts-node build/cards.ts",
"publish": "firebase deploy",
"publish:ci": "firebase deploy --token \"$FIREBASE_TOKEN\"",
"clean": "rm -rf dist/*",
"dev": "vite"
},
"author": "Adam Bibby",
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.22.7",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@preact/preset-vite": "^2.5.0",
"@types/lodash": "^4.14.167",
"@types/node": "^16.11.39",
"@types/node-fetch": "^2.5.7",
"@types/react": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-preact": "^0.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.6.0",
"firebase-tools": "^11.16.1",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"prettier": "^2.6.1",
"ts-node": "^10.9.1",
"tslint": "^5.20.1",
"tslint-react": "^4.2.0",
"typescript": "^4.6.3",
"vite": "^4.4.4",
"vite-plugin-babel": "^1.1.3"
},
"dependencies": {
"@google-cloud/firestore": "^6.6.1",
"@zwzn/spicy": "^1.0.1",
"classnames": "^2.3.1",
"decko": "^1.2.0",
"firebase": "^9.8.3",
"idb-keyval": "^6.1.0",
"nord": "^0.2.1",
"preact": "^10.16.0",
"preact-router": "^4.1.1",
"scryfall-sdk": "^4.1.1"
}
}