-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.11 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
{
"name": "recipe-rest",
"version": "1.0.0",
"description": "Servidor nodejs-graphql",
"main": "./build/app.js",
"scripts": {
"test": "nodemon --exec babel-node src/app.js",
"build": "babel -d ./build ./src -s",
"start": "npm run build && node ./build/app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Crystal-Moon/recipe-rest.git"
},
"author": "PerlaStto",
"license": "ISC",
"bugs": {
"url": "https://github.com/Crystal-Moon/recipe-rest/issues"
},
"homepage": "https://github.com/Crystal-Moon/recipe-rest#readme",
"dependencies": {
"apollo-server-express": "^2.17.0",
"babel-preset-env": "^1.7.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql-resolvers": "^0.4.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mysql": "^2.14.1",
"typeorm": "^0.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"nodemon": "^2.0.4"
}
}