forked from digitomize/digitomize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.15 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
{
"name": "digitomize",
"version": "2.1.1",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "concurrently \"cd backend && npm i\" \"cd client && npm i\"",
"build": "concurrently \"cd backend && npm run start\" \"cd client && npm run build\"",
"dev": "concurrently \"cd backend && npm run dev\" \"cd client && npm run dev\"",
"eslint": "concurrently \"cd backend && npm run lint\" \"cd client && npm run lint\"",
"eslint-fix": "concurrently \"cd backend && npm run lint-fix\" \"cd client && npm run lint-fix\"",
"test": "echo \"Error: no test specified\" && exit 1",
"format:write": "prettier --write .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pranshugupta54/digitomize.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pranshugupta54/digitomize/issues"
},
"homepage": "https://github.com/pranshugupta54/digitomize#readme",
"devDependencies": {
"all-contributors-cli": "^6.26.1",
"concurrently": "^8.2.2",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"prettier": "3.1.0"
}
}