This repository has been archived by the owner on Dec 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.81 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
{
"name": "relay-compiler-webpack-plugin-example",
"version": "0.0.0",
"author": "Daniel Holmes",
"license": "MIT",
"scripts": {
"frontend": "node scripts/frontend.js",
"backend": "node scripts/backend.js",
"format": "prettier-standard 'frontend/src/**/*.js' 'backend/src/**/*.js'",
"build": "webpack --config webpack.config.js",
"relay-compile": "relay-compiler --schema=data/schema.json --src=./frontend --watchman false",
"generate-schema": "node scripts/generate-schema.js",
"clean": "find frontend/src -name __generated__ | xargs rm -rf"
},
"engines": {
"node": ">=10.0.0",
"yarn": ">=1.0.0"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"babel-plugin-relay": "^8.0.0",
"babelify": "^10.0.0",
"css-loader": "^3.0.0",
"file-loader": "^5.0.2",
"graphql-compiler": "^2.0.0-rc.1",
"graphql-to-json": "^1.1.2",
"html-webpack-plugin": "^3.2.0",
"prettier-standard": "^16.1.0",
"relay-compiler": "^8.0.0",
"relay-compiler-webpack-plugin": "relay-tools/relay-compiler-webpack-plugin",
"style-loader": "^1.0.0",
"url-loader": "^3.0.0",
"watchify": "^3.11.0",
"webpack": "^4.5.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.3"
},
"dependencies": {
"@babel/polyfill": "^7.0.0",
"bootstrap": "^4.1.0",
"cors": "^2.8.4",
"es6-promise": "^4.2.4",
"express": "^4.16.2",
"express-graphql": "^0.9.0",
"graphql": "^14.1.1",
"history": "^4.7.2",
"isomorphic-fetch": "2.2.1",
"prop-types": "^15.6.0",
"react": "^16.3.2",
"react-bootstrap": "^0.32.0",
"react-dom": "^16.3.2",
"react-relay": "^8.0.0",
"react-router-dom": "^5.0.0",
"relay-runtime": "^8.0.0"
}
}