forked from pbock/c3t-drop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.68 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
{
"name": "c3t-drop",
"version": "0.1.0",
"description": "A drop point for material that helps us translate c3 talks",
"main": "yarn start",
"scripts": {
"test": "jest",
"fix": "prettier --write index.ts \"lib/**/*.ts\" \"models/**/*.ts\" && tslint --project tsconfig.json --fix \"lib/**/*.ts\" \"models/**/*.ts\"",
"dev": "NODE_ENV=development ts-node index.ts | yarn bunyan",
"start": "NODE_ENV=production node dist/index.js",
"build": "tsc"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
},
"author": "Philipp Bock <[email protected]> (http://philippbock.de/)",
"license": "MIT",
"devDependencies": {
"@types/archiver": "^6.0.2",
"@types/basic-auth": "^1.1.6",
"@types/bunyan": "^1.8.11",
"@types/cookie-parser": "^1.4.6",
"@types/express": "^4.17.21",
"@types/i18n": "^0.13.10",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/multer": "^1.4.11",
"@types/node": "^20.10.4",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"ts-jest": "^29.1.1"
},
"dependencies": {
"archiver": "^6.0.1",
"basic-auth": "^2.0.1",
"bunyan": "^1.8.15",
"chokidar": "^3.5.3",
"cookie-parser": "^1.4.6",
"express": "^4.18.2",
"fs-promise": "^2.0.3",
"helmet": "^7.1.0",
"i18n": "^0.15.1",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"multer": "^1.4.5-lts.1",
"pug": "^3.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dockerfile": {
"alpine": true,
"cache": "",
"port": 9000,
"dev": true
}
}