-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.73 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
{
"name": "re-cite-app",
"version": "0.2.0",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "npm run build && jest --coverage && npm run coverage",
"webpack": "webpack -w",
"watch:jest": "npm run build && jest --coverage --watchAll",
"webpack:production": "NODE_ENV=production webpack",
"add_redirects": "echo '/* /index.html 200' >./build/_redirects",
"deploy:netlify": "npm run clean && npm run build && npm run webpack:production && npm run add_redirects",
"server": "webpack-dev-server --host 0.0.0.0 --port 8087",
"introspection": "get-graphql-schema https://recite-api.margareta.dev/v1/graphql -j > graphql_schema.json",
"introspection:gql": "get-graphql-schema https://recite-api.margareta.dev/v1/graphql > schema.graphql"
},
"keywords": [
"BuckleScript"
],
"author": "",
"license": "MIT",
"dependencies": {
"@apollo/react-hooks": "^4.0.0",
"bs-css": "^10.0.1",
"bs-react-netlify-identity": "^2.0.3",
"bs-webapi": "^0.19.1",
"haikunator": "^2.1.2",
"react": "^16.8.1",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.8.1",
"react-feather": "^2.0.8",
"react-toastify": "^5.4.1",
"reason-apollo": "^0.20.0",
"reason-apollo-hooks": "^6.0.1",
"reason-react": ">=0.7.0"
},
"devDependencies": {
"@baransu/graphql_ppx_re": "^0.7.1",
"@glennsl/bs-jest": "^0.5.0",
"bs-platform": "8.2.0",
"css-loader": "^3.2.0",
"favicons-webpack-plugin": "^3.0.1",
"get-graphql-schema": "^2.1.2",
"html-webpack-plugin": "^4.0.0-beta.11",
"style-loader": "^1.0.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.11.0"
}
}