-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "shallty",
"version": "4.2.0",
"description": "Shallty adalah aplikasi untuk mem-bypass berbagai shortlink yang digunakan oleh fansub/fanshare anime Indonesia.",
"main": "dist/index",
"author": "gegehprast98",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gegehprast/shallty.git"
},
"scripts": {
"build": "tsc",
"watch": "npm run build -- -w",
"nodemon": "nodemon .",
"dev": "run-p watch nodemon",
"start": "node dist/",
"test": "mocha -- --exit",
"cleandist": "rimraf dist",
"copyviews": "copyfiles -u 3 src/http/views/**/* dist/http/views",
"copypublic": "copyfiles -u 3 src/http/public/**/* dist/http/public",
"dev-ts": "nodemon --watch **/*.ts --exec ts-node ./src/index.ts"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/express": "^4.17.7",
"@types/mocha": "^8.2.3",
"@types/mongoose-paginate-v2": "^1.3.9",
"@types/node": "^14.0.25",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"chai": "^4.3.4",
"eslint": "^7.5.0",
"mocha": "^9.0.2",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"copyfiles": "^2.4.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"mongoose": "^6.5.2",
"mongoose-paginate-v2": "^1.3.17",
"pug": "^3.0.2",
"puppeteer": "^16.2.0",
"socket.io": "^4.1.2"
}
}