-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
50 lines (50 loc) · 1.73 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
{
"name": "monkjs",
"packageManager": "[email protected]",
"description": "Monorepo for the MonkJs project",
"private": true,
"type": "module",
"author": "monkvision",
"license": "BSD-3-Clause-Clear",
"workspaces": [
"packages/*",
"configs/*",
"apps/*",
"documentation"
],
"scripts": {
"repair": "lerna repair",
"clean": "rimraf node_modules && yarn cache clean && yarn install",
"clean:all": "lerna run clean --parallel && rimraf node_modules && yarn cache clean && yarn install",
"build": "yarn run build:development",
"build:development": "lerna run build:development --scope '@monkvision/*'",
"build:production": "lerna run build:production --scope '@monkvision/*'",
"build:documentation": "lerna run build --scope 'monk-documentation'",
"version": "yarn install && git stage yarn.lock",
"deploy:packages": "yarn run build:production && lerna publish --force-publish --exact",
"deploy:documentation": "lerna run deploy --scope 'monk-documentation'",
"test": "lerna run test --parallel",
"test:packages": "lerna run test --parallel --scope '@monkvision/*'",
"test:coverage": "lerna run test:coverage --parallel",
"lint": "lerna run --parallel lint",
"lint:fix": "lerna run --parallel lint:fix",
"ci": "yarn && yarn build && yarn test && yarn lint",
"svgo": "lerna run svgo --parallel"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"lerna": "^7.1.4",
"rimraf": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monkvision/monkjs.git"
},
"bugs": {
"url": "https://github.com/monkvision/monkjs/issues"
},
"homepage": "https://github.com/monkvision/monkjs"
}