-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "api",
"version": "2.2.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev ./src/index.ts",
"start-prod": "NODE_PATH=./dist node ./dist",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@arranger/server": "^2.2.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/register": "^7.9.0",
"@elastic/elasticsearch": "^7.8.0",
"@types/async-retry": "^1.4.2",
"@types/express": "^4.17.4",
"@types/lodash": "^4.14.158",
"@types/morgan": "^1.9.0",
"apollo-server-express": "^2.16.1",
"async-retry": "^1.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.19",
"morgan": "^1.10.0",
"pm2": "^4.2.3",
"ts-node": "^8.8.1",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"devDependencies": {
"nodemon": "^2.0.2"
}
}