forked from vellengs/typerx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (40 loc) · 1.09 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
{
"name": "typerx",
"version": "0.2.0",
"description": "A lightweight annotation-based full stack node project",
"keywords": [
"api",
"decorator",
"express",
"rest",
"restful",
"swagger",
"typescript"
],
"homepage": "https://github.com/vellengs/typerx#readme",
"bugs": {
"url": "https://github.com/vellengs/typerx/issues"
},
"license": "MIT",
"author": "vellengs",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vellengs/typerx.git"
},
"scripts": {
"client": "cd packages/client && npm start",
"server": "cd packages/server && npm start",
"start": "concurrently --kill-others \"npm run server\" \"npm run client\"",
"test": "jest",
"test:cov": "jest --coverage",
"test:e2e": "jest --config ./test/jest-e2e.json",
"prettify": "pretty-quick",
"watch": "nodemon",
"watch-test": "npm run test -- --watchAll"
},
"dependencies": {
},
"devDependencies": {
}
}