-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.33 KB
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
45
46
47
48
{
"name": "synapse-analytics-api",
"version": "1.0.0",
"description": "Analytics API for Synapse Protocol",
"main": "src/index.ts",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"test": "DOTENV_CONFIG_PATH=.env.test ts-mocha test/**/*.ts",
"test:coverage": "DOTENV_CONFIG_PATH=.env.test c8 --reporter=lcov ts-mocha test/**/*test.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-validator": "^6.14.2",
"ioredis": "^5.2.0",
"mongodb": "^4.8.0",
"object-hash": "^3.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/cors": "^2.8.12",
"@types/ejs": "^3.1.1",
"@types/expect": "^24.3.0",
"@types/express": "^4.17.13",
"@types/ioredis": "^4.28.10",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.3",
"@types/node-fetch": "^2.6.2",
"@types/object-hash": "^2.2.1",
"@types/supertest": "^2.0.12",
"c8": "^7.11.3",
"chai": "^4.3.6",
"concurrently": "^7.2.2",
"mocha": "^10.0.0",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.19",
"npx": "^10.2.2",
"supertest": "^6.2.4",
"ts-mocha": "^10.0.0",
"typescript": "^4.7.4"
}
}