-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 KB
/
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
36
37
{
"name": "reprothereum.js",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"build": "tsc ./app.ts && tsc ./routes/index.ts && tsc ./routes/web3js/*.ts && tsc ./routes/ethersjs/*.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"clean": "rm -rf node_modules && rm -rf coverage",
"clear": "rm -rf app.js && rm ./routes/index.js && rm ./routes/web3js/*.js && rm ./routes/ethersjs/*.js",
"travis": "npm run build && npm run test:coverage"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dev": "^0.1.3",
"ethers": "^4.0.36",
"express": "~4.16.1",
"http-errors": "~1.6.3",
"morgan": "~1.9.1",
"web3": "^1.2.0"
},
"devDependencies": {
"@types/express": "^4.17.1",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.2",
"@types/supertest": "^2.0.8",
"coveralls": "^3.0.6",
"jest": "^24.9.0",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tslint": "^5.19.0",
"typescript": "^3.5.3"
}
}