-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.44 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
{
"name": "peon",
"version": "1.0.0",
"description": "Automation tool",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=html --reporter=text ts-mocha './test/**/*test.ts'",
"mtest": "mocha --recursive",
"coverage": "nyc report --reporter=text-lcov > ./coverage/lcov.info",
"dev-srv": "npm run build && nodemon app/server.js",
"dev-api": "npm run build && nodemon app/api.js",
"format": "prettier --write .",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uka17/peon.git"
},
"author": "Maj. Tom Johnson",
"license": "ISC",
"bugs": {
"url": "https://github.com/uka17/peon/issues"
},
"homepage": "https://github.com/uka17/peon#readme",
"dependencies": {
"ajv": "^6.12.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"express-session": "^1.17.2",
"jsonwebtoken": "^8.5.1",
"passport": "^0.5.0",
"passport-local": "^1.0.0",
"pg": "^8.7.1",
"request": "^2.88.2",
"schedulator": "^2.0.14",
"swagger-ui-express": "^4.1.6",
"utils-error-to-json": "^1.0.0",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/body-parser": "^1.19.1",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/chai-datetime": "^0.0.37",
"@types/cors": "^2.8.12",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.13",
"@types/express-jwt": "^6.0.2",
"@types/express-session": "^1.17.4",
"@types/jsonwebtoken": "^8.5.5",
"@types/mocha": "^9.0.0",
"@types/passport": "^1.0.7",
"@types/passport-local": "^1.0.34",
"@types/pg": "^8.6.1",
"@types/sinon": "^10.0.6",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^8.3.3",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-datetime": "^1.7.0",
"coveralls": "^3.1.1",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.3",
"nanoid": "^3.1.30",
"nodemon": "^2.0.14",
"nyc": "^15.1.0",
"prettier": "2.4.1",
"sinon": "^11.1.2",
"supertest": "^6.1.6",
"swagger-autogen": "^2.12.3",
"ts-mocha": "^8.0.0",
"typescript": "^4.4.4"
}
}