-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 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
{
"name": "remody-server",
"version": "0.1.0",
"description": "this is remody server",
"main": "index.js",
"scripts": {
"start": "yarn build && pm2 start dist/index.js --name remody-server",
"build": "babel src -d dist",
"develop": "nodemon src/index.js --ext js,graphql --exec babel-node",
"delete": "pm2 delete remody-server",
"test": "echo \"Error: no test specified\" && exit 1",
"get-schema": "graphql get-schema -p prisma"
},
"author": "azxca1731@gmail.com",
"license": "MIT",
"dependencies": {
"@elastic/elasticsearch": "6",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"graphql-cli": "^3.0.11",
"graphql-yoga": "^1.14.10",
"jsonwebtoken": "^8.5.0",
"mkdirp": "^0.5.1",
"mysql": "^2.16.0",
"nodemailer": "^5.1.1",
"nodemailer-smtp-transport": "^2.7.4",
"prisma-binding": "2.1.1",
"python-shell": "^1.0.7",
"shortid": "^2.2.14"
},
"devDependencies": {
"nodemon": "^1.17.5",
"pm2": "^3.4.1"
}
}