-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 4.14 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "inrae-sensorthing-api",
"description": "Sensorthing API for INRAE",
"version": "1.1.0",
"lockfileVersion": 1,
"requires": true,
"repository": {
"type": "git",
"url": "https://github.com/Mario-35/api-sensorthing"
},
"scripts": {
"------DEV-----": "",
"find-deadcode": "ts-prune",
"dev": "nodemon ./src/server/index.ts",
"debug": "nodemon",
"debug2": "node --inspect -r ts-node/register ./src/server/index.ts",
"lint": "tsc --noEmit && eslint \"./src/server/**/*.{js,ts}\" --quiet --fix",
"prettier-format": "prettier --config .prettierrc ./src/**/*.ts --write",
"------BUILD-----": "",
"buildUgly": "npm run build-ts && node build.js ugly",
"buildUglyRem": "npm run build-ts && node build.js ugly && scp -r -p dist.zip [email protected]:./",
"buildDemo": "npm run build-ts && node build.js && scp -r -p dist.zip [email protected]:./",
"buildRem": "npm run build-ts && node build.js && scp -r -p dist.zip [email protected]:./",
"build": "npm run build-ts && node build.js",
"build-ts": "rimraf ./build && tsc",
"serve": "node build/index.js",
"------TEST-------": "",
"test-all": "mocha -r ts-node/register src/**/*.spec.ts",
"test": "set NODE_ENV=test && rimraf ./src/test/apidoc && rimraf ./src/test/apiDocs && node node_modules/mocha/bin/mocha -r ts-node/register src/test/integration/**/*.spec.ts",
"------API Doc-------": "",
"doc": "node bin/apidoc -v -i src/ -o apidoc/",
"------Docker-------": "",
"docker": "docker-compose up --build -d"
},
"keywords": [],
"author": "Adam Mario",
"license": "ISC",
"dependencies": {
"@koa/cors": "^3.1.0",
"@types/html-minifier": "^4.0.2",
"busboy": "^0.3.1",
"cookie": "^0.5.0",
"cookie-parser": "^1.4.6",
"json2csv": "^5.0.6",
"jsonwebtoken": "^8.5.1",
"knex": "^0.95.14",
"koa": "^2.3.0",
"koa-bodyparser": "^4.3.0",
"koa-compress": "^5.1.0",
"koa-helmet": "^6.1.0",
"koa-json": "^2.0.2",
"koa-jwt": "^4.0.3",
"koa-logger": "^3.2.1",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"nodemailer": "^6.7.3",
"pg": "^8.7.3",
"pg-copy-streams": "^5.1.1",
"pg-hstore": "^2.3.4"
},
"devDependencies": {
"@node-minify/clean-css": "^6.2.0",
"@node-minify/cli": "^6.2.0",
"@node-minify/core": "^6.2.0",
"@node-minify/html-minifier": "^6.2.0",
"@node-minify/jsonminify": "^6.2.0",
"@node-minify/terser": "^6.2.0",
"@node-minify/uglify-js": "^6.2.0",
"@types/apidoc": "^0.50.0",
"@types/busboy": "^0.2.3",
"@types/chai": "^4.2.14",
"@types/cookie": "^0.5.1",
"@types/cookie-parser": "^1.4.3",
"@types/json2csv": "^5.0.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/koa": "^2.11.6",
"@types/koa__cors": "^3.0.2",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-compress": "^4.0.3",
"@types/koa-html-minifier": "^1.0.1",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa-passport": "^4.0.2",
"@types/koa-router": "^7.4.1",
"@types/koa-static": "^4.0.2",
"@types/mocha": "^9.0.0",
"@types/nodemailer": "^6.4.4",
"@types/pg": "^8.6.1",
"@types/pg-copy-streams": "^1.2.1",
"@types/superagent": "^4.1.10",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"apidoc": "^0.50.2",
"archiver": "^5.2.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.3",
"nodemon": "^2.0.7",
"onchange": "^7.1.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"ts-prune": "^0.10.3",
"typescript": "^4.4.0-beta",
"uglify-js": "^3.14.4"
}
}