-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 KB
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
{
"name": "playos-backend",
"description": "Backend core for PlayOS. (Reference implementation)",
"version": "1.0.0",
"main": "index.js",
"devDependencies": {
"@types/node": "^13.9.2",
"nodemon": "^2.0.2",
"ts-node": "^8.7.0",
"typescript": "^3.8.3"
},
"dependencies": {
"apollo-server": "^2.14.2",
"apollo-server-express": "^2.11.0",
"class-validator": "^0.11.1",
"dotenv": "^8.2.0",
"mongodb": "^3.0.7",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.24"
},
"scripts": {
"start": "node 'dist/server.js'",
"build": "tsc -p . && ncp src/schema dist/schema",
"dev": "npm run build:dev",
"build:dev": "nodemon 'src/server.ts' --exec 'ts-node' src/server.ts -e ts,graphql,json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Play-OS/Backend.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Play-OS/Backend/issues"
},
"homepage": "https://github.com/Play-OS/Backend#readme"
}