-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "@emcasa/mock-server",
"version": "0.4.1",
"author": "EmCasa <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"bin": {
"emcasa-mock-server": "lib/bin/emcasa-mock-server.js"
},
"scripts": {
"start": "nodemon src/bin/run.js",
"build": "babel -d lib src",
"update-schema": "(cd backend && mix absinthe.schema.json --schema ReWeb.Schema --pretty) && mv backend/schema.json ./schema.json",
"prepare-backend": "cd backend && cp -n config/dev.secret-example.exs config/dev.secret.exs || mix deps.get",
"prepare": "yarn build"
},
"dependencies": {
"apollo-errors": "^1.9.0",
"apollo-server": "^2.12.0",
"apollo-server-express": "^2.12.0",
"body-parser": "^1.19.0",
"buffer": "^5.5.0",
"express": "^4.17.1",
"faker": "^4.1.0",
"fs": "^0.0.1-security",
"graphql": "15",
"graphql-tools": "5",
"lodash.flow": "^3.5.0",
"lodash.mapvalues": "^4.6.0",
"merge-deep": "^3.0.2",
"os": "^0.1.1",
"path": "^0.12.7",
"slugify": "^1.4.0",
"url": "^0.11.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0-rc.4",
"@babel/core": "^7.0.0-rc.4",
"@babel/node": "^7.0.0-rc.4",
"@babel/preset-env": "^7.0.0-rc.4",
"get-graphql-schema": "^2.1.1",
"nodemon": "^1.18.3"
},
"publishConfig": {
"access": "public"
}
}