-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
36 lines (36 loc) · 943 Bytes
/
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
{
"name": "takehome-challenge",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"generateData": "node utils/getEventJson.js > data/data.json",
"importData": "tsc --project scripts.tsconfig.json && node dist/scripts/importData.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@faker-js/faker": "^6.1.2",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@types/node": "^16.11.26",
"babel-jest": "^27.2.0",
"jest": "^27.2.0",
"typescript": "^4.6.3"
},
"dependencies": {
"@babel/preset-typescript": "^7.15.0",
"@types/sqlite3": "^3.1.7",
"axios": "^0.26.1",
"express": "^4.17.3",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"typeorm": "^0.3.6"
}
}