-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
39 lines (39 loc) · 965 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
36
37
38
39
{
"name": "libra-service",
"version": "1.1.0",
"description": "Libra Service",
"main": "index.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test": "jest",
"test-dev": "jest --watchAll",
"coverage": "jest --coverage",
"dev": "nodemon index.js",
"prestart": "run-script-os",
"prestart:win32": "copy .env.example .env",
"prestart:darwin:linux": "cp .env.example .env",
"start": "node index.js"
},
"keywords": [],
"author": "Nattapon Nimakul <[email protected]> (kulap.io)",
"license": "Private",
"dependencies": {
"@rauschma/stringio": "^1.4.0",
"axios": "^0.19.0",
"bignumber.js": "^9.0.0",
"body-parser": "^1.19.0",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"moment": "^2.24.0",
"kulap-libra": "^1.0.17",
"lodash": ">=4.17.13"
},
"devDependencies": {
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"run-script-os": "^1.0.7",
"supertest": "^4.0.2"
}
}