-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "chords-server",
"version": "1.0.0",
"description": "Serveur pour Chords-Vanilla permettant de lier des suites d'accords à un utilisateur.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/server.js",
"postinstall": "tsc --esModuleInterop",
"dev": "nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dylanderv/chords-server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dylanderv/chords-server/issues"
},
"homepage": "https://github.com/Dylanderv/chords-server#readme",
"devDependencies": {
"nodemon": "^1.19.1",
"typescript": "^3.5.2"
},
"engines": {
"node": "10.15.3"
},
"dependencies": {
"@koa/cors": "^3.0.0",
"@types/graphql": "^14.5.0",
"@types/koa-router": "^7.0.42",
"@types/node": "^12.0.12",
"apollo-server-koa": "^2.6.7",
"bcrypt": "^3.0.6",
"class-validator": "^0.9.1",
"graphql": "^14.4.2",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-passport": "^4.1.3",
"koa-router": "^7.4.0",
"koa-session": "^5.12.0",
"passport-local": "^1.0.0",
"pg": "^7.11.0",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.8.0",
"typeorm": "^0.2.18"
}
}