-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.28 KB
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
{
"private": true,
"name": "@cellbang/monorepo",
"version": "0.0.0",
"engines": {
"yarn": "1.0.x || >=1.2.1",
"node": ">=12.14.1"
},
"resolutions": {
"**/@types/node": "12",
"**/node-abi": "^2.18.0"
},
"devDependencies": {
"@types/chai-string": "^1.4.0",
"@types/jsdom": "^11.0.4",
"@types/mocha": "^8.2.0",
"@types/node": "12",
"@types/sinon": "^2.3.5",
"@types/temp": "^0.8.29",
"@types/uuid": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/eslint-plugin-tslint": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"chai-string": "^1.4.0",
"colors": "^1.4.0",
"concurrently": "^3.5.0",
"electron-mocha": "^8.2.0",
"eslint": "^7.14.0",
"eslint-plugin-deprecation": "^1.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-no-null": "^1.0.2",
"eslint-plugin-no-unsanitized": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"if-env": "^1.0.4",
"ignore-styles": "^5.0.1",
"jsdom": "^11.5.1",
"lerna": "^2.2.0",
"nyc": "^15.0.0",
"rimraf": "^2.6.1",
"sinon": "^3.3.0",
"temp": "^0.8.3",
"tslint": "^5.12.0",
"typedoc": "^0.17.7",
"typedoc-plugin-external-module-map": "^1.2.1",
"typescript": "^3.9.2",
"uuid": "^8.0.0"
},
"scripts": {
"prepare": "yarn run prepare:build",
"prepare:build": "yarn build && lerna run lint",
"build": "tsc -b configs/root-compilation.tsconfig.json",
"watch": "tsc -b configs/root-compilation.tsconfig.json -w",
"clean": "yarn lint:clean && lerna run clean",
"build:clean": "lerna run prepare",
"lint": "lerna run lint",
"lint:clean": "rimraf .eslintcache",
"lint:oneshot": "node --max-old-space-size=4096 node_modules/eslint/bin/eslint.js --cache=true \"{dev-packages,packages,examples}/**/*.{ts,tsx}\"",
"docs": "rimraf gh-pages/docs/next && typedoc --tsconfig configs/typedoc-tsconfig.json --options configs/typedoc.json",
"test": "yarn test:cellbang",
"test:cellbang": "lerna run test --scope \"@cellbang/!(example-)*\" --stream --concurrency=1",
"publish": "yarn && yarn test && lerna publish",
"next:publish": "lerna publish --exact --canary=next --npm-tag=next --yes"
},
"workspaces": [
"dev-packages/*",
"packages/*",
"apps/*"
]
}