-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
25 lines (25 loc) · 1007 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
{
"name": "explorer",
"description": "Tangle Explorer",
"version": "4.0.1",
"scripts": {
"setup:client": "cd client && npm install && npm run postinstall",
"setup:api": "cd api && npm install && npm run build-compile && npm run build-config",
"setup:dev": "npm run clear && npm run prepare && npm run setup:client && npm run setup:api",
"clear": "rimraf api/node_modules api/dist client/node_modules client/build",
"dev": "concurrently 'cd api && npm run start-dev' 'cd client && npm run start'",
"prepare": "husky install",
"format": "concurrently 'cd api && npm run format' 'cd client && npm run format'",
"tag:release": "./scripts/tag_release.sh"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.18.1",
"concurrently": "^8.2.2",
"lint-staged": "^14.0.1",
"rimraf": "^5.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"husky": "^8.0.3"
}
}