-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.77 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": "untitled-block-game",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"heroku-postbuild": "babel src --out-dir dist --copy-files",
"dev": "env-cmd -f ./config/dev.env nodemon src/index.js --ext js, --exec babel-node",
"test": "env-cmd -f ./config/test.env jest --watch --runInBand",
"update-db": "prisma migrate dev --preview-feature",
"update-db-test": "env-cmd -f ./config/test.env prisma migrate dev --preview-feature",
"update-db-prod": "env-cmd -f ./config/prod.env prisma migrate dev --preview-feature",
"update-dbs": "yarn update-db && yarn update-db-test",
"push-db": "env-cmd -f ./config/prod.env prisma db push --preview-feature"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"@babel/node": "^7.10.5",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-runtime": "^7.11.0",
"jest": "^26.3.0",
"nodemon": "^2.0.4",
"prisma": "^3.9.1"
},
"dependencies": {
"@babel/polyfill": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@prisma/client": "^2.4.1",
"@sentry/node": "^6.17.3",
"@sentry/tracing": "^6.17.3",
"@types/graphql-iso-date": "^3.4.0",
"apollo-boost": "^0.4.9",
"aws-sdk": "^2.848.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bcryptjs": "^2.4.3",
"core-js": "^3.6.5",
"email-validator": "^2.0.4",
"env-cmd": "^10.1.0",
"express-fileupload": "^1.2.1",
"graphql-playground-html": "^1.6.29",
"graphql-request": "^3.0.0",
"graphql-yoga": "^1.18.3",
"jsonwebtoken": "^8.5.1",
"prisma-binding": "^2.3.16",
"regenerator-runtime": "^0.13.7",
"request": "^2.88.2"
}
}