-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.66 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
52
53
54
55
56
{
"name": "early-starkers-backend",
"description": "Created using Project Manager CLI",
"private": true,
"version": "1.0.0",
"scripts": {
"start": "ts-node ./index.ts",
"watch": "nodemon ./index.ts",
"test": "jest ./tests --passWithNoTests",
"format:check": "prettier -c \"src/**/*.ts\"",
"format": "prettier --write \"src/**/*.ts\"",
"lint:check": "eslint \"src/**/*.ts\"",
"lint": "yarn lint:check --fix",
"precommit": "yarn format && yarn format:check && yarn lint:check",
"postinstall": "rimraf dist && tsc && shx cp -r ./src/Metadata ./dist/src",
"serve": "node ./dist/index.js"
},
"license": "ISC",
"dependencies": {
"@reduxjs/toolkit": "^1.8.5",
"bn.js": "^5.2.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.1",
"helmet": "^5.1.1",
"starknet": "^5.14.1"
},
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/bn.js": "^5.1.0",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"shx": "^0.3.4",
"ts-node": "^10.4.0",
"typescript": "^4.5.3"
},
"engines": {
"node": ">=16"
}
}