forked from corecodeio/entry-challenge-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 835 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
{
"name": "entry-challenge",
"version": "1.0.0",
"description": "Applicants must complete this challenge to enter core-code.io v1",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node-dev --no-notify --respawn ./src",
"start:debug": "ts-node-dev --inspect --no-notify --respawn ./src"
},
"author": "netpoe",
"license": "ISC",
"dependencies": {
"@types/dotenv": "^8.2.0",
"ajv": "^6.12.2",
"axios": "^0.19.2",
"bcryptjs": "^2.4.3",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ts-node-dev": "^1.0.0-pre.44"
},
"prettier": {
"trailingComma": "all",
"printWidth": 92
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^14.0.13",
"prettier": "^2.0.5",
"typescript": "^3.9.5"
}
}