This repository was archived by the owner on Aug 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.41 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.41 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
40
41
42
43
44
{
"name": "fresh-stark-check-api",
"version": "0.1.0",
"description": "Public API for Ledger StarkCheck",
"author": "innovation@ledger.fr",
"license": "Apache-2.0",
"scripts": {
"dev": "nodemon src/server.ts",
"start": "nodemon build/server.js",
"build": "rm -rf build/ && tsc",
"test": "jest --setupFiles dotenv/config ",
"test-only": "jest test/policy.test.ts --setupFiles dotenv/config ",
"test:ci": "jest --ci",
"sign": "npx ts-node script/signer.ts",
"lint": "eslint . --ext .ts",
"prettier": "prettier --check .",
"prettier:write": "prettier --write .",
"lefthook": "lefthook run pre-push"
},
"dependencies": {
"@types/supertest": "^2.0.12",
"express": "^4.18.2",
"morgan": "^1.10.0",
"starknet": "5.14.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"nodemon": "^2.0.20",
"dotenv": "^16.0.3"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/jest": "^29.2.5",
"@types/morgan": "^1.9.3",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"jest": "29.3.1",
"lefthook": "^1.3.0",
"prettier": "^2.8.4",
"supertest": "6.3.3",
"ts-jest": "29.0.3"
}
}