-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 846 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 846 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
34
35
{
"name": "casper-world-backend",
"version": "1.0.0",
"main": "index.ts",
"license": "MIT",
"private": true,
"dependencies": {
"@ethersproject/bignumber": "^5.4.2",
"agenda": "^4.2.1",
"axios": "^0.21.4",
"dotenv": "^10.0.0",
"mongodb-memory-server": "^8.0.4",
"mongoose": "5.13.9",
"ts-jest": "^27.0.7"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/agenda": "^4.1.0",
"@types/jest": "^27.0.3",
"@types/mongoose": "^5.11.97",
"@types/node": "^16.9.0",
"babel-jest": "^27.4.2",
"jest": "^27.4.2",
"ts-node": "^10.2.1",
"typedoc": "^0.22.10",
"typescript": "^4.4.2"
},
"scripts": {
"start": "ts-node index.ts",
"test": "jest"
}
}