-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.03 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.03 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@ecliptic/reason-events-api",
"version": "0.1.0",
"description": "The Reason Events api server",
"repository": {
"type": "git",
"url": "git@github.com:ecliptic/reason-events.git"
},
"author": "Brandon Konkle <brandon@ecliptic.io> (http://ecliptic.io)",
"license": "BSD-2-Clause",
"keywords": [
"reasonml",
"graphql",
"express"
],
"scripts": {
"build": "yarn build.re && yarn build.container",
"build.re": "bsb -make-world",
"build.re.clean": "bsb -clean-world",
"build.re.watch": "yarn build.re -w",
"build.container": "docker build -t ecliptic/reason-events .",
"dev": "yarn dev.watch.debug",
"dev.run": "NODE_ENV=development dotenv node src/Server.bs.js",
"dev.debug": "DEBUG=reason-events:*,graphile-build:* yarn dev",
"dev.watch": "NODE_ENV=development dotenv nodemon src/Server.bs.js --delay 1",
"dev.watch.debug": "DEBUG=reason-events:*,graphile-build:* yarn dev.watch",
"migrate": "dotenv knex migrate:latest",
"precommit": "lint-staged",
"start": "./Server.bs",
"test.watch": "NODE_ENV=test jest --watch",
"test": "NODE_ENV=test jest"
},
"dependencies": {
"@ecliptic/mnstr-core": "*",
"@ecliptic/mnstr-server": "*",
"apollo-errors": "^1.9.0",
"apollo-server-express": "^2.0.0",
"body-parser": "^1.18.3",
"bs-abstract": "^0.15.0",
"bs-apollo-server-express": "^0.3.1",
"bs-chalk": "^0.2.1",
"bs-express": "^0.8.0",
"bs-graphql": "^0.3.1",
"bs-graphql-scalar": "^0.2.2",
"bs-graphql-tools": "^0.3.1",
"bs-moment": "^0.3.0",
"bs-node-debug": "^0.2.0",
"bs-promise-router": "^0.2.0",
"chalk": "^2.4.1",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-promise-router": "^3.0.3",
"graphql": "0.11.7",
"graphql-tag": "^2.9.2",
"graphql-tools": "^3.0.5",
"graphql-type-json": "^0.2.1",
"knex": "0.15.2",
"morgan": "^1.9.0",
"parse-database-url": "^0.3.0",
"pg": "^7.4.3",
"postgraphile": "^4.0.0-rc.2",
"ramda": "^0.25.0"
},
"devDependencies": {
"@playlyfe/gql": "^2.6.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-jest": "^23.4.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"bs-platform": "4.0.1",
"concurrently": "^3.6.1",
"eslint": "^5.2.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.10.0",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"lint-staged": "^7.2.0",
"nodemon": "^1.18.3"
},
"resolutions": {
"graphql": "0.11.7"
},
"lint-staged": {
"src/**/*.re": [
"refmt --in-place",
"git add"
]
}
}