-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.74 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
59
60
61
{
"name": "play-the-mind",
"version": "0.0.1",
"description": "Frontend for The Mind Card Game (unofficial)",
"main": "index.html",
"scripts": {
"start": "rm -rf dist/ .cache/ && parcel index.html --no-source-maps",
"build": "parcel build index.html --out-dir=public --no-source-maps",
"stage": "npm run build && now && now rm play-the-mind -ys",
"publish": "now --prod && now rm play-the-mind -ys"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/tehpsalmist/play-the-mind.git"
},
"keywords": [
"cards",
"game",
"react",
"parcel",
"graphql",
"hasura"
],
"author": "Ben Steward <bstewardcodes@gmail.com> (https://tehpsalmist.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tehpsalmist/play-the-mind/issues"
},
"homepage": "https://github.com/tehpsalmist/play-the-mind#readme",
"dependencies": {
"@auth0/auth0-spa-js": "^1.19.1",
"@babel/runtime-corejs2": "^7.15.4",
"apollo-boost": "^0.4.9",
"apollo-cache-inmemory": "^1.6.5",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.13",
"apollo-link-http": "^1.5.16",
"apollo-link-ws": "^1.0.19",
"apollo-utilities": "^1.3.3",
"graphql": "^14.7.0",
"graphql-tag": "^2.12.5",
"react": "^16.14.0",
"react-apollo": "^3.0.0",
"react-dom": "^16.14.0",
"react-router-dom": "^5.3.0",
"react-spring": "^9.2.4",
"subscriptions-transport-ws": "^0.9.19"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@fullhuman/postcss-purgecss": "^3.0.0",
"autoprefixer": "^9.8.7",
"babel-preset-env": "^1.7.0",
"parcel-bundler": "^1.12.5",
"postcss": "^8.3.8",
"tailwindcss": "^1.9.6"
},
"browserslist": [
"last 2 Chrome versions"
]
}