-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
75 lines (75 loc) · 2.42 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
{
"name": "goldfishjs",
"private": true,
"version": "0.0.1",
"description": "",
"scripts": {
"ci": "yarn build && yarn lint && yarn test && coveralls-lerna",
"release": "node scripts/release.js",
"lint": "node scripts/lint.js",
"build": "node scripts/build.js",
"reboot": "yarn clear && yarn install",
"clear": "rm -rf node_modules && rm -rf packages/*/node_modules",
"test": "jest --coverage --passWithNoTests",
"test:dev": "node ./scripts/test_dev.js",
"dev:docs": "vuepress dev docs",
"build:docs": "vuepress build docs",
"deploy:boilerplate": "cp -R ./docs/.vuepress/boilerplate ./docs/.vuepress/dist/boilerplate",
"deploy": "./deploy.sh"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.18.2",
"@babel/plugin-proposal-class-properties": "7.17.12",
"@babel/plugin-transform-classes": "7.18.4",
"@babel/plugin-transform-runtime": "7.18.2",
"@babel/preset-env": "7.18.2",
"@babel/preset-react": "7.17.12",
"@testing-library/react-hooks": "5.1.3",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"babel-plugin-import": "1.13.5",
"babel-plugin-minify-dead-code-elimination": "0.5.2",
"babel-plugin-transform-node-env-inline": "0.4.3",
"babel-plugin-transform-remove-imports": "1.7.0",
"coveralls-lerna": "0.0.5",
"cross-env": "7.0.3",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-react-app": "5.2.1",
"eslint-import-resolver-alias": "1.1.2",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-compat": "3.13.0",
"eslint-plugin-flowtype": "4.7.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react": "7.30.0",
"eslint-plugin-react-hooks": "3.0.0",
"fs-extra": "10.1.0",
"git-branch": "2.0.1",
"gulp": "4.0.2",
"gulp-babel": "8.0.0",
"gulp-env": "0.4.0",
"gulp-typescript": "5.0.1",
"jest": "26.1.0",
"jest-environment-jsdom": "26.1.0",
"lerna": "5.1.1",
"lodash": "4.17.21",
"merge2": "1.4.1",
"prettier": "2.6.2",
"ts-jest": "26.4.4",
"typescript": "4.7.2"
},
"dependencies": {
"@vuepress/plugin-back-to-top": "1.4.0",
"@vuepress/plugin-medium-zoom": "1.5.2",
"vuepress": "1.5.2"
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": []
}
}