-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.95 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
{
"name": "exposure",
"version": "1.0.0",
"main": "dist/build.js",
"license": "MIT",
"scripts": {
"build": "webpack --config build/webpack.development",
"prestart": "npm run build",
"start": "node dist/bundle.js",
"dev:start": "npm run start",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"lint": "tslint -p ./tsconfig.json -c ./tslint.json"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-transform-typescript": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@types/express": "^4.17.0",
"@types/node": "^12.0.8",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"dotenv-webpack": "^1.7.0",
"eslint": "^5.16.0",
"eslint-loader": "^2.1.2",
"nodemon": "^1.19.1",
"ts-error": "^1.0.3",
"ts-loader": "^6.0.3",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"tslint-config-standard": "^8.0.1",
"tslint-webpack-plugin": "^2.0.4",
"typescript": "^3.5.2",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@types/cors": "^2.8.6",
"@types/method-override": "^0.0.31",
"@types/mongoose": "^5.5.34",
"@types/passport": "^1.0.2",
"@types/validatorjs": "^3.15.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"es6-error": "^4.1.1",
"express": "^4.17.1",
"fastify": "^2.6.0",
"http-status": "^1.3.2",
"method-override": "^3.0.0",
"mongoose": "^5.8.1",
"passport": "^0.4.1",
"passport-telegram": "^1.0.0",
"passport-telegram-official": "^1.1.0",
"ts-mongoose": "^0.0.21",
"uuid": "^3.3.3",
"validatorjs": "^3.15.1",
"webpack-node-externals": "^1.7.2"
}
}