-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
80 lines (80 loc) · 2.12 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
{
"name": "skifreejs",
"version": "1.0.0",
"module": "commonjs",
"description": "https://github.com/cdleveille/skifreejs#readme",
"main": "build/index.js",
"scripts": {
"start": "node build/index.js",
"start-i": "npm i && npm run start",
"dev": "nodemon build/index.js",
"dev-i": "npm i && npm run dev",
"debug": "http-server -a localhost -p 8000 -c-1",
"prebuild": "eslint --fix --ext .ts,.tsx . && npm run walk && npm run min",
"build": "tsc",
"postinstall": "npm run build",
"min": "javascript-obfuscator public --output public.min",
"walk": "node cpx.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdleveille/skifreejs.git"
},
"author": "Chris Leveille <cdleveille@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdleveille/skifreejs/issues"
},
"homepage": "https://github.com/cdleveille/skifreejs#readme",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/compression": "^1.7.1",
"@types/cors": "^2.8.12",
"@types/dateformat": "^3.0.1",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.4",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^14.17.5",
"@types/nodemailer": "^6.4.4",
"@types/response-time": "^2.3.5",
"@typescript-eslint/parser": "^4.28.4",
"braces": ">=2.3.1",
"eslint": "^7.31.0",
"javascript-obfuscator": "^2.18.0",
"nodemon": "^2.0.12",
"npm": "^7.20.3",
"ts-node": "^9.1.1",
"typescript": "^4.3.5"
},
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"cluster": "^0.7.7",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cpx": "^1.5.0",
"crypto": "^1.0.1",
"dateformat": "^4.5.1",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"glob-parent": "^6.0.1",
"helmet": "^4.4.1",
"http": "0.0.1-security",
"http-server": "^0.12.3",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.10",
"mongoose": "^5.13.3",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"node-cache": "^5.1.2",
"nodemailer": "^6.6.3",
"os": "^0.1.2",
"path": "^0.12.7",
"response-time": "^2.3.2",
"socket.io": "^3.1.0",
"winston": "^3.3.3",
"ws": "^7.5.3"
}
}