-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.65 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
{
"name": "reduced.to",
"version": "1.0.0",
"description": "reduced.to is a web application that reduces the length of link URL. So it's easier to remember, share and track.",
"scripts": {
"test:all": "npm run test:backend",
"test:backend": "npm --prefix ./backend run test",
"build:all": "npm run build:frontend && npm run build:backend",
"build:frontend": "npm --prefix ./frontend run build && npm --prefix ./frontend run build.server",
"build:backend": "npm --prefix ./backend run build",
"install:all": "npm run install:frontend && npm run install:backend",
"install:frontend": "cd ./frontend && npm i",
"install:backend": "cd ./backend && npm i",
"start:frontend": "npm --prefix ./frontend run start",
"start:backend": "npm --prefix ./backend run start",
"start:dev": "concurrently --kill-others \"npm:dev --prefix ./frontend\" \"npm:start:dev --prefix ./backend\"",
"fmt": "prettier --loglevel warn --write \"*.{ts,json,yml,yaml,md}\" \"{frontend,backend}/**/*.{ts,tsx,json,yml,yaml,md}\"",
"fmt.check": "prettier --check .",
"prepare": "husky install"
},
"lint-staged": {
"*.{ts,json,yml,yaml,md}": [
"prettier --check"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/origranot/reduced.to.git"
},
"author": "OriG",
"license": "ISC",
"bugs": {
"url": "https://github.com/origranot/reduced.to/issues"
},
"homepage": "https://github.com/origranot/reduced.to#readme",
"devDependencies": {
"concurrently": "^7.4.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}