forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.54 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "gitrest-release-group",
"version": "0.1.0",
"private": true,
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "server/gitrest"
},
"license": "MIT",
"author": "Microsoft and contributors",
"scripts": {
"build": "npm run build:genver && npm run build:compile && npm run lint",
"build:compile": "lerna run build:compile --stream",
"build:genver": "lerna run build:genver --stream --parallel",
"ci:lint": "lerna run eslint --no-sort --stream",
"clean": "rimraf dist *.tsbuildinfo *.build.log",
"format": "npm run prettier:fix",
"preinstall": "node scripts/only-pnpm.cjs",
"lint": "npm run prettier && npm run ci:lint",
"lint:fix": "npm run prettier:fix && lerna run lint:fix --no-sort --stream",
"policy-check": "fluid-repo-policy-check",
"policy-check:fix": "fluid-repo-policy-check -r",
"prettier": "prettier --check . --ignore-path ./.prettierignore",
"prettier:fix": "prettier --write . --ignore-path ./.prettierignore",
"start": "node packages/gitrest/dist/www.js",
"start:dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up",
"test": "lerna run test --stream --no-bail --no-sort",
"tsc": "tsc"
},
"nyc": {
"all": true,
"cache-dir": "nyc/.cache",
"exclude": [],
"include": [],
"report-dir": "nyc/report",
"reporter": [
"cobertura",
"html",
"text"
],
"temp-directory": "nyc/.nyc_output"
},
"devDependencies": {
"@fluid-tools/build-cli": "0.15.0",
"@fluidframework/build-common": "^1.1.0",
"@fluidframework/build-tools": "0.15.0",
"@fluidframework/eslint-config-fluid": "^2.0.0",
"@rushstack/eslint-config": "^2.6.1",
"@types/async": "^3.2.9",
"@types/cors": "^2.8.4",
"@types/debug": "^4.1.5",
"@types/lorem-ipsum": "^1.0.2",
"@types/mocha": "^10.0.0",
"@types/nconf": "^0.10.0",
"@types/node": "^16.18.16",
"@types/nodegit": "^0.27.3",
"@types/rimraf": "^3.0.2",
"@types/supertest": "^2.0.7",
"@types/uuid": "^3.4.4",
"@types/winston": "^2.4.4",
"async": "^3.2.2",
"concurrently": "^7.5.0",
"eslint": "~8.27.0",
"lerna": "^5.1.8",
"lorem-ipsum": "^1.0.6",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"run-script-os": "^1.1.5",
"sillyname": "^0.1.0",
"supertest": "^3.4.2",
"typescript": "~4.5.5"
},
"packageManager": "[email protected]+sha512.917887efe886843726dd45618dbe29cdb458963a13d8a551f1614bdfb6fe735e45f42b9a2dabb4453a33ad7c7ff6c9dfd491261880a346730cd9702b98cd35b2",
"pnpm": {
"overrides": {
"qs": "^6.11.0"
}
}
}