-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
102 lines (102 loc) · 3.87 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=18"
},
"description": "A framework for building React web applications",
"scripts": {
"test:prod": "cross-env NODE_ENV=production jest --config ./scripts/jest/prod.config.json",
"test:dev": "cross-env NODE_ENV=development jest --config ./scripts/jest/dev.config.json",
"test": "yarn test:dev && yarn test:useES2015",
"test:useDefineForClassFields": "cross-env NODE_ENV=development jest --config ./scripts/jest/useDefineForClassFields.config.json",
"test:useES2015": "cross-env NODE_ENV=development jest --config ./scripts/jest/useES2015.config.json",
"build": "cross-env NODE_ENV=production ts-node scripts/build.ts",
"clean": "lerna exec rimraf ./dist ./build",
"test:generateTestSource:huge": "ts-node scripts/performance/generateTestSourceWithReactant.ts --mode=huge",
"test:performance:huge": "yarn test:generateTestSource:huge && yarn test:run:performance",
"test:generateTestSource:big": "ts-node scripts/performance/generateTestSourceWithReactant.ts --mode=big",
"test:performance:big": "yarn test:generateTestSource:big && yarn test:run:performance",
"test:generateTestSource:small": "ts-node scripts/performance/generateTestSourceWithReactant.ts --mode=small",
"test:performance:small": "yarn test:generateTestSource:small && yarn test:run:performance",
"test:run:performance": "ts-node packages/reactant/test/performance.tsx",
"test:performance": "yarn test:performance:small && yarn test:performance:big && yarn test:performance:huge",
"build:api": "yarn clean && ts-node scripts/typedoc.ts",
"commit": "yarn git-cz",
"update:version": "lerna version --amend --no-git-tag-version",
"publish": "lerna exec --no-private --no-bail -- npm publish",
"publish:docs": "yarn clean && cd website && GIT_USER=unadlib USE_SSH=true yarn run deploy",
"start:docs": "cd website && yarn run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unadlib/reactant.git"
},
"keywords": [
"React"
],
"authors": [
"Michael Lin <[email protected]> (https://github.com/unadlib)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/unadlib/reactant/issues"
},
"homepage": "https://reactant.js.org/",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^6.1.0",
"@rollup/plugin-replace": "^2.3.0",
"@types/fs-extra": "^8.0.1",
"@types/glob-parent": "^5.1.0",
"@types/jest": "^29.0.3",
"@types/node": "^13.7.1",
"@types/react": "^17.0.49",
"@types/react-dom": "^17.0.17",
"@types/react-redux": "^7.1.24",
"@types/react-router": "^5.1.18",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"chalk": "^3.0.0",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.1",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^8.1.0",
"glob-parent": "^5.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdoc-tests": "^1.1.0",
"lerna": "^6.6.2",
"mobx": "^5.15.4",
"prettier": "^2.8.4",
"rimraf": "^3.0.2",
"rollup": "^1.28.0",
"rollup-plugin-terser": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typedoc": "^0.27.5",
"typedoc-plugin-markdown": "^4.3.3",
"typescript": "^5.7.2",
"yargs": "^15.1.0"
},
"resolutions": {
"@types/react": "^17.0.49",
"@types/react-dom": "^17.0.17"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}