-
-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
34 lines (34 loc) · 902 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
26
27
28
29
30
31
32
33
34
{
"name": "foal-srcs",
"description": "Full-featured Node.js framework, with no complexity",
"directories": {
"doc": "docs"
},
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "tslint -c tslint.json --project tsconfig.json",
"lint:fix": "tslint -c tslint.json --project tsconfig.json --fix",
"start-docker": "docker compose build && docker compose up -d",
"stop-docker": "docker compose down",
"clean": "lerna clean",
"test": "lerna run --no-bail test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FoalTS/foal.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/FoalTS/foal/issues"
},
"homepage": "https://github.com/FoalTS/foal#readme",
"devDependencies": {
"@types/mocha": "10.0.7",
"lerna": "~8.1.7",
"mocha": "~10.7.2",
"tslint": "~6.1.3",
"typescript": "~4.9.5"
}
}