-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"name": "ad-service",
"version": "1.0.0",
"description": "A bare bones ad targeting system",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prestart": "ts-node-dev -r tsconfig-paths/register ./cli/create_dummy_ads_collection.ts create:dummy:ads:collection",
"start": "ts-node-dev --inspect=7000 --respawn --ignore-watch node_modules index.ts",
"build": "tsc"
},
"keywords": [
"Apester",
"Home",
"Assignment",
"Ads"
],
"author": "Apester R&D <[email protected]>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"express": "^4.17.1",
"mongodb": "^3.6.5",
"mongoose": "^5.12.3",
"prettier": "^2.2.1"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/mongodb": "^3.6.11",
"@types/mongoose": "^5.10.4",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"commander": "^7.2.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
}
}