-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 937 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
{
"name": "classify",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "SET NODE_ENV=dev & nodemon -r tsconfig-paths/register src/index.ts",
"build": "tsc -p .",
"test": "SET NODE_ENV=test & mocha --check-leaks -r tsconfig-paths/register -r ts-node/register \"test/**/*.spec.ts\""
},
"keywords": [],
"author": "cheatsnake",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"@types/supertest": "^2.0.11",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"nodemon": "^2.0.15",
"supertest": "^6.1.6",
"ts-node": "^10.4.0",
"tsconfig-paths": "^3.11.0",
"typescript": "^4.4.4"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1"
}
}