This repository was archived by the owner on Dec 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·73 lines (73 loc) · 2.23 KB
/
package.json
File metadata and controls
executable file
·73 lines (73 loc) · 2.23 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "wonder-server",
"version": "0.1.0",
"scripts": {
"bsb:watch": "bsb -clean-world -make-world -w",
"bsb:build": "bsb -clean-world -make-world",
"test:watch": "jest --runInBand --watch --config jest.json",
"test:update": "jest --runInBand -u --config jest.json",
"start": "node ./lib/js/src/server/app.js",
"start:online": "pm2 start ./lib/js/src/server/app.js",
"log:info": "cat /mnt/logs/info.log | pino-pretty -c -l",
"log:error": "cat /mnt/logs/error.log | pino-pretty -c -l",
"webpack:dev": "NODE_ENV=development webpack --config webpack.config.js",
"webpack:prod": "NODE_ENV=production webpack --config webpack.config.js"
},
"keywords": [
"BuckleScript"
],
"author": "",
"license": "MIT",
"dependencies": {
"@justgage/reason-cookie": "^0.1.2",
"apollo-cache-inmemory": "^1.2.1",
"apollo-client": "^2.3.1",
"apollo-link": "^1.2.2",
"apollo-link-context": "^1.0.8",
"apollo-link-error": "^1.0.9",
"apollo-link-http": "^1.5.4",
"apollo-link-ws": "^1.0.8",
"apollo-utilities": "^1.0.16",
"body-parser": "^1.18.3",
"bs-express": "^0.9.0",
"bs-fetch": "^0.3.1",
"bs-moment": "^0.3.1",
"gulp": "^3.9.1",
"gulp-sync": "^0.1.4",
"cors": "^2.8.5",
"express": "^4.16.4",
"formidable": "^1.2.1",
"graphql": "^14.0.2",
"graphql-tag": "^2.9.2",
"moment": "^2.22.2",
"node-fetch": "^2.6.0",
"react": "^16.3.2",
"react-apollo": "^2.1.6",
"react-dom": "^16.3.2",
"reason-apollo": "0.14.1",
"reason-react": "^0.5.3",
"subscriptions-transport-ws": "^0.9.11",
"wonder-bs-apollo-server-express": "^0.0.1",
"wonder-bs-graphql": "^0.0.3",
"wonder-bs-json": "^0.0.1",
"wonder-bs-most": "^0.0.3",
"wonder-bs-mysql2": "^0.1.0",
"wonder-commonlib": "^0.2.23",
"wonder-log": "^0.2.2",
"wonder-reroute": "^0.0.2"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-jest": "24.3.1",
"bs-platform": "^4.0.6",
"graphql_ppx": "^0.2.4",
"jest": "24.3.1",
"sinon": "^4.0.1",
"webpack": "^4.6.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.3",
"wonder-bs-jest": "0.3.0",
"wonder-bs-sinon": "^0.1.7"
}
}