-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "mypaste",
"version": "0.0.0",
"private": false,
"main": "dist/index.js",
"repository": {
"url": "https://github.com/PierreSchwang/MyPaste"
},
"author": {
"name": "Pierre Maurice Schwang",
"email": "[email protected]",
"url": "https://pschwang.eu"
},
"bugs": {
"url": "https://github.com/PierreSchwang/MyPaste/issues"
},
"scripts": {
"build": "tsc && ts-node lib/copyAssets.ts",
"prestart": "npm run build",
"start": "node dist/index.js",
"dev:start": "npm run build && npm run start",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start"
},
"dependencies": {
"@types/nedb": "^1.8.9",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"less-middleware": "~2.2.1",
"morgan": "~1.9.1",
"nedb": "^1.8.0",
"twig": "~0.10.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.2",
"@types/less-middleware": "^2.0.31",
"@types/morgan": "^1.7.37",
"@types/node": "^13.7.0",
"@types/shelljs": "^0.8.6",
"nodemon": "^2.0.2",
"shelljs": "^0.8.5",
"ts-node": "^8.6.2",
"tslint": "^5.20.1",
"typescript": "^3.7.5"
}
}