-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.5 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
{
"name": "skynet",
"version": "1.0.0",
"description": "A simple cloud store",
"main": "main.ts",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0",
"yarn": ">=1.22.5"
},
"scripts": {
"start": "node ./dist/server.js",
"dev": "nodemon -x ts-node ./src/server",
"dev:pipeline": "gulp dev:cleanup && nodemon -x ts-node ./src/server",
"prod": "node dist/main.js",
"build": "yarn clean && prettier -w src && tsc --project ./tsconfig.json && gulp postbuild",
"clean": "rm -rf dist",
"test": "jest",
"lint": "eslint --ext src/*.ts",
"docgen": "cd docs && postman-to-markdown samples.postman_collection.json",
"bundle:prod": "yarn build && webpack --mode=production",
"bundle:dev": "yarn build && webpack --mode=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/masterchief01/skynet.git"
},
"author": "Pranjal Walia <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/masterchief01/skynet/issues"
},
"homepage": "https://github.com/masterchief01/skynet#readme",
"dependencies": {
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@types/nodemailer": "^6.4.0",
"@types/prettier": "^2.1.6",
"babel-jest": "^26.6.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"mongoose": "^5.11.15",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.4.17",
"prettier": "^2.2.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/ejs": "^3.0.5",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.20",
"@types/mongoose": "^5.10.3",
"@types/multer": "^1.4.5",
"@types/node": "^14.14.20",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"del": "^6.0.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"gulp": "^4.0.2",
"gulp-run": "^1.7.1",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"require-dir": "^1.2.0",
"supertest": "^6.1.3",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}