-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "smart-city",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/melitus/smart-city.git",
"author": "melitus <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"kafka": "ts-node ./src/message-broker/index.ts",
"build": "rm -rf ./dist && tsc",
"copy-files": "cp -r ./src/datastore ./dist/datastore",
"start": " yarn build && yarn copy-files && node dist/index.js"
},
"dependencies": {
"ajv": "^8.17.1",
"axios": "^1.7.7",
"bluebird": "^3.7.2",
"body-parser": "^1.20.3",
"chalk": "^4.1.0",
"cli-table": "^0.3.11",
"csv-parse": "^5.6.0",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"http-errors": "^2.0.0",
"kafkajs": "^2.2.4",
"mongoose": "^6.3.3",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"rimraf": "^5.0.0",
"ts-node": "^10.9.2",
"typescript": "^4.1.3"
}
}