-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
38
39
40
41
42
43
{
"name": "FuelingService",
"version": "2.2.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "ts-node ./ts/server.ts",
"build": "rm -rf ./js; tsc -p ./tsconfig.json",
"test": "mocha --opts ./mocha.opts ./tests/index.ts --exit --timeout 100000"
},
"dependencies": {
"@types/mocha": "^5.2.7",
"body-parser": "^1.18.2",
"ethereumjs-tx": "^1.3.3",
"ethers": "^5.6.4",
"express": "^4.17.1",
"express-rate-limit": "^5.1.1",
"ramda": "^0.26.1"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/express": "^4.17.1",
"@types/node": "^10.3.2",
"@types/ramda": "^0.26.21",
"@types/supertest": "^2.0.8",
"chai": "^4.2.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"ganache-core": "^2.8.0",
"husky": "^3.0.5",
"mocha": "^6.2.0",
"precise-commits": "^1.0.2",
"prettier": "^1.18.2",
"supertest": "^4.0.2",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}