-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 923 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 923 Bytes
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
{
"name": "supp-backend",
"version": "1.0.0",
"description": "Le backend de SUPP",
"main": "index.js",
"scripts": {
"start": "babel src -d dist && node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"doc": "jsdoc -r src -d docs",
"clean": "rm -r dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SUStudentDevs/SUPP-Backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SUStudentDevs/SUPP-Backend/issues"
},
"homepage": "https://github.com/SUStudentDevs/SUPP-Backend#readme",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"express-graphql": "^0.6.11",
"express-jwt": "^5.3.0",
"graphql": "^0.13.0",
"jsonwebtoken": "^8.1.1",
"mysql": "^2.15.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1"
}
}