-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
75 lines (75 loc) · 2.65 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
{
"private": true,
"workspaces": [
"packages/*"
],
"devEngines": {
"node": "10.x || 11.x || 12.x || 13.x || 14.x"
},
"scripts": {
"start": "yarn start:example:basic",
"install:example:basic": "cd examples/basic && yarn install",
"start:example:basic": "cd examples/basic && yarn start",
"install:example:non-module-federation": "cd examples/non-module-federation && yarn install",
"start:example:non-module-federation": "cd examples/non-module-federation && yarn start",
"install:example:all-features": "cd examples/all-features && yarn install",
"start:example:all-features": "cd examples/all-features && yarn start",
"install:example:version-control": "cd examples/version-control && yarn install",
"start:example:version-control": "cd examples/version-control && yarn inststartll",
"test:prod": "NODE_ENV=production jest --config ./scripts/jest/prod.config.json",
"test:dev": "NODE_ENV=development jest --config ./scripts/jest/dev.config.json",
"test": "yarn test:dev",
"build": "NODE_ENV=production ts-node scripts/build.ts",
"clean": "lerna exec rimraf ./dist ./build",
"commit": "cz",
"update:version": "lerna version --amend --no-git-tag-version",
"publish": "lerna exec --no-private --no-bail -- npm publish",
"deploy:website": "cd website && GIT_USER=unadlib USE_SSH=true yarn run deploy"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/unadlib/fronts.git"
},
"author": "unadlib",
"license": "MIT",
"bugs": {
"url": "https://github.com/unadlib/fronts/issues"
},
"homepage": "https://github.com/unadlib/fronts#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"@types/fs-extra": "^9.0.5",
"@types/glob-parent": "^5.1.0",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"commitizen": "^4.2.4",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.0",
"fs-extra": "^9.0.1",
"glob-parent": "^5.1.1",
"jest": "^26.6.3",
"jsdoc-tests": "^0.1.1",
"jsonfile": "^6.1.0",
"lerna": "^4.0.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tslib": "^2.3.0",
"typescript": "^4.2.4"
}
}