-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
executable file
·39 lines (39 loc) · 1.01 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
{
"name": "casperdash_api",
"version": "1.1.7",
"description": "CasperDash APIs",
"main": "index.js",
"scripts": {
"test": "jest --coverage --watchAll",
"test-ci": "jest --coverage",
"start": "NODE_ENV=mainnet PORT=3001 nodemon server.js",
"dev": "NODE_ENV=testnet PORT=3001 nodemon server.js",
"mainnet": "NODE_ENV=mainnet PORT=3001 node server.js"
},
"author": "CasperDash",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-deprecate": "^0.7.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"jest": "^27.3.1",
"nodemon": "^2.0.12",
"swagger-ui-express": "^4.1.6"
},
"dependencies": {
"axios": "^0.24.0",
"casper-js-sdk": "^2.7.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"lodash": "^4.17.21",
"multer": "^1.4.4",
"nft.storage": "^5.1.3",
"multiformats": "^9.5.6"
}
}