-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 921 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 921 Bytes
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
{
"name": "@atomlearning/interview-2021-backend",
"version": "1.0.0",
"description": "The Atom Learning coding test.",
"main": "./dist/main.js",
"scripts": {
"start": "./node_modules/.bin/nodemon -r dotenv/config --exec ts-node src --config nodemon.json",
"test": "NODE_ENV=test jest --runInBand --forceExit --detectOpenHandles"
},
"keywords": [],
"author": "Atom Learning",
"private": true,
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/supertest": "^2.0.10",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"supertest": "^6.1.3",
"ts-jest": "^26.5.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.2",
"webpack": "^5.24.2",
"webpack-dev-server": "^3.11.2"
}
}