-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 2.23 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
{
"name": "willow",
"version": "1.0.0",
"description": "A web interface for constructing and validating truth trees.",
"main": "index.js",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "jest",
"lint": "gts lint",
"clean": "gts clean",
"compile": "npx json2ts -i schemas/ -o src/types/ && npx webpack",
"fix": "gts fix",
"debug": "nodemon",
"start": "npx ts-node -r tsconfig-paths/register src/server/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bram-Hub/Willow.git"
},
"contributors": [
{
"name": "Connor Roizman"
},
{
"name": "Jeff Putlock"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Bram-Hub/Willow/issues"
},
"homepage": "https://github.com/Bram-Hub/Willow#readme",
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/connect-pg-simple": "^7.0.3",
"@types/csurf": "^1.11.5",
"@types/express": "^4.17.21",
"@types/express-session": "^1.18.0",
"@types/http-errors": "^2.0.4",
"@types/jest": "^29.5.12",
"@types/morgan": "^1.9.9",
"@types/node": "^20.11.28",
"@types/nodemailer": "^6.4.14",
"@types/passport": "^1.0.16",
"@types/passport-local": "^1.0.38",
"@types/pg": "^8.11.2",
"@types/pug": "^2.0.10",
"@types/tmp": "^0.2.6",
"gts": "^5.2.0",
"jest": "^29.7.0",
"json-schema-to-typescript": "^13.1.2",
"nodemon": "^3.1.0",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"connect-pg-simple": "^9.0.1",
"csurf": "^1.11.0",
"dotenv": "^16.4.5",
"express": "^4.18.3",
"express-session": "^1.18.0",
"hotkeys-js": "^3.13.7",
"http-errors": "^2.0.0",
"morgan": "^1.10.0",
"nodemailer": "^6.9.12",
"passport": "^0.7.0",
"passport-local": "^1.0.0",
"pg": "^8.7.1",
"pug": "^3.0.0",
"tmp": "^0.2.3",
"vue": "^3.4.21",
"vuex": "^4.1.0",
"webpack": "^5.90.3",
"winston": "^3.12.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.1/xlsx-0.20.1.tgz",
"yaml": "^2.4.1"
}
}