forked from microsoft/FluidFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 3.51 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": "root",
"version": "0.0.1",
"private": true,
"homepage": "https://fluidframework.com",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/FluidFramework.git",
"directory": "server/historian"
},
"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",
"clean": "rimraf dist *.tsbuildinfo *.build.log",
"postinstall": "npm run postinstall:lerna",
"lint": "lerna run lint --no-sort --stream",
"lint:fix": "lerna run lint:fix --no-sort --stream",
"policy-check": "fluid-repo-policy-check",
"policy-check:fix": "fluid-repo-policy-check -r",
"post-lerna-install:default": "[ -f package-lock.json ] && mv package-lock.json lerna-package-lock.json; [ -f package-lock.json.bak ] && mv package-lock.json.bak package-lock.json; exit 0",
"post-lerna-install:win32": "if exist package-lock.json move package-lock.json lerna-package-lock.json && if exist package-lock.json.bak move package-lock.json.bak package-lock.json",
"postinstall:lerna": "run-script-os",
"postinstall:lerna:default": "npm run pre-lerna-install:default && { lerna bootstrap --strict --hoist;t1=$?;npm run post-lerna-install:default;exit $t1;}",
"postinstall:lerna:win32": "npm run pre-lerna-install:win32 && (lerna bootstrap --strict --hoist & npm run post-lerna-install:win32)",
"pre-lerna-install:default": "[ -f package-lock.json ] && mv package-lock.json package-lock.json.bak; [ -f lerna-package-lock.json ] && mv lerna-package-lock.json package-lock.json; exit 0",
"pre-lerna-install:win32": "if exist package-lock.json move package-lock.json package-lock.json.bak && if exist lerna-package-lock.json move lerna-package-lock.json package-lock.json",
"start": "node packages/historian/dist/www.js",
"start:debug": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml -f docker-compose.debug.yml up",
"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",
"tslint": "tslint 'src/**/*.ts'"
},
"nyc": {
"all": true,
"cache-dir": "nyc/.cache",
"exclude": [],
"include": [],
"report-dir": "nyc/report",
"reporter": [
"cobertura",
"html",
"text"
],
"temp-directory": "nyc/.nyc_output"
},
"devDependencies": {
"@fluidframework/build-tools": "^0.4.4000",
"@fluidframework/eslint-config-fluid": "^0.28.1000-61189",
"@rushstack/eslint-config": "^2.5.1",
"@types/compression": "0.0.36",
"@types/cors": "^2.8.4",
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.119",
"@types/mocha": "^9.1.1",
"@types/nconf": "0.0.37",
"@types/redis": "^2.8.10",
"@types/supertest": "^2.0.7",
"async": "^3.2.2",
"concurrently": "^6.2.0",
"copyfiles": "^2.4.1",
"eslint": "~8.6.0",
"eslint-plugin-eslint-comments": "~3.1.2",
"eslint-plugin-import": "~2.25.4",
"eslint-plugin-jsdoc": "~39.3.0",
"eslint-plugin-optimize-regex": "~1.1.7",
"eslint-plugin-react": "~7.28.0",
"eslint-plugin-unicorn": "~40.0.0",
"eslint-plugin-unused-imports": "~2.0.0",
"lerna": "^4.0.0",
"mocha": "^10.0.0",
"nyc": "^15.0.0",
"rimraf": "^2.6.2",
"run-script-os": "^1.1.5",
"supertest": "^3.3.0",
"tslint": "^5.12.0",
"typescript": "~4.5.5"
}
}