-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
29 lines (29 loc) · 948 Bytes
/
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
{
"name": "reasonmtl-dojo-3",
"version": "0.1.0",
"scripts": {
"start": "concurrently -c --kill-others 'yarn:start:bsb' 'yarn:start:parcel'",
"start:bsb": "bsb -make-world -w",
"start:parcel": "parcel public/index.html --open",
"clean": "bsb -clean-world && rm -rf .cache dist",
"build": "yarn clean && bsb -make-world && parcel build public/index.html",
"test": "echo \"Error: no test specified\" && exit 1",
"schema": "yarn send-introspection-query https://reasonable-pokedex-git-cors.davidcorticchiato.now.sh/graphql"
},
"author": "Thibaut Mattio",
"license": "MIT",
"dependencies": {
"bs-css": "^8.0.4",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"reason-apollo": "^0.16.3",
"reason-react": "^0.7.0",
"tachyons": "^4.11.1"
},
"devDependencies": {
"bs-platform": "^5.0.4",
"concurrently": "^4.1.0",
"graphql_ppx": "^0.2.8",
"parcel-bundler": "^1.12.3"
}
}