-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.34 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
{
"name": "graphql-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"transpile": "babel ./src --out-dir dist --copy-files",
"build": "npm-run-all clean transpile",
"server": "node ./dist/main.js",
"prod": "cross-env NODE_ENV=production npm-run-all build server",
"dev": "cross-env NODE_ENV=development npm-run-all build server",
"watch:dev": "nodemon",
"start": "npm run prod"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/camilo0119/graphql-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"homepage": "https://bitbucket.org/camilo0119/graphql-api#readme",
"dependencies": {
"@prisma/client": "^2.2.0",
"bcrypt": "^5.0.0",
"cross-env": "^7.0.2",
"graphql-yoga": "^1.18.3",
"jsonwebtoken": "^8.5.1",
"uuid": "^8.1.0"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-env": "^7.10.2",
"@prisma/cli": "^2.3.0",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"to": "^0.2.9",
"update": "^0.7.4"
}
}