-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.88 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "Omniverse",
"version": "0.0.1a",
"description": "Omniverse server implementation for managing bundles",
"main": "index.js",
"repository": "www.github.com:Smeb/OmniverseServer",
"author": "Ben Ryves",
"license": "MIT",
"scripts": {
"server": "node ./bin/server",
"dev": "NODE_ENV=development nodemon ./bin/server",
"test": "NODE_ENV=test nyc mocha --exit -r ts-node/register \"test/**/*.ts\"",
"upload": "node dist/tools/upload"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"src/database/config.ts",
"src/database/access/datatypes/server_key.ts"
],
"include": [
"src"
]
},
"dependencies": {
"body-parser": "^1.18.2",
"dotenv": "^5.0.1",
"express": "^4.16.2",
"express-jsonschema": "^1.1.6",
"express-promise-router": "^3.0.1",
"express-winston": "^2.5.0",
"grunt-exec": "^3.0.0",
"morgan": "^1.9.0",
"node-fetch": "^2.1.2",
"nyc": "^11.7.1",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2",
"sequelize": "^4.34.0",
"swaggerize": "^1.1.0",
"tsoa": "^2.1.1",
"urijs": "^1.19.1",
"winston": "^2.4.1",
"winston-daily-rotate-file": "^3.0.1"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/errorhandler": "^0.0.32",
"@types/morgan": "^1.7.35",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"errorhandler": "^1.5.0",
"grunt": "^1.0.2",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-ts": "^6.0.0-beta.17",
"mocha": "^5.0.5",
"mock-express-request": "^0.2.2",
"nodemon": "^1.15.1",
"prettier": "^1.10.2",
"proxyquire": "^2.0.1",
"sequelize-cli": "^4.0.0",
"sinon": "^4.5.0",
"sinon-chai": "^3.0.0",
"source-map-support": "^0.5.3",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.9.0"
}
}