-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.49 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
44
45
46
47
48
49
50
51
{
"name": "erc721ValidatorApi",
"description": "API to use ERC-721 validator",
"version": "0.1.0",
"private": true,
"license": "Private",
"main": "./dist/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "npm run clear && tsc",
"clear": "rm -Rf ./dist",
"start": "npx ts-node ./src/scripts/start-http.ts",
"test": "./node_modules/.bin/mocha --timeout 60000 --require ts-node/register --inspect --recursive ./src/tests/**/*.ts",
"deploy": "npx sls deploy --aws-profile nibbstack",
"deploy:delete": "npx sls remove --aws-profile nibbstack"
},
"engines": {
"node": ">= 9"
},
"dependencies": {
"@nibbstack/erc721-validator": "0.3.1",
"aws-serverless-express": "^3.4.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cli-table2": "^0.2.0",
"cors": "^2.8.5",
"express": "5.0.0-alpha.8",
"rawmodel": "^1.33.0",
"web3": "1.5.2"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.1",
"@types/cli-table2": "^0.2.3",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.8",
"@types/faker": "^5.5.8",
"@types/jsonwebtoken": "^8.5.5",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.4",
"@types/supertest": "^2.0.11",
"mocha": "^9.1.1",
"serverless": "2.16.1",
"serverless-domain-manager": "6.0.2",
"supertest": "^6.1.6",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.4.3"
}
}