-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 3.16 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
{
"name": "re-flex",
"version": "0.3.4",
"description": "Starter for Monorepos: Lerna, TypeScript, CRA and Storybook",
"main": "index.js",
"repository": "https://github.com/meftunca/reflex",
"author": "[email protected]",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"docs"
],
"scripts": {
"bootstrap": "lerna bootstrap --force-local && lerna link",
"publish": "git add .; git commit -m 'auto publish'; git push -u; node ./scripts/build_project.js",
"test": "lerna run test",
"start": "lerna run start --stream --scope @re-flex/utils --scope @re-flex/styles --scope @re-flex/styled --scope @re-flex/ui",
"module:precompile": "npm run module:clean; lerna exec --stream --scope @re-flex/utils --scope @re-flex/styles --scope @re-flex/styled --scope @re-flex/ui -- tsc ",
"module:clean": "lerna run clean",
"lint": "eslint .",
"serve": "yarn bootstrap && lerna exec serve -s build --scope=@re-flex/docs",
"docs": "yarn bootstrap; lerna run start --stream --scope=@re-flex/docs",
"docs:build": "yarn bootstrap; lerna run build --scope=@re-flex/docs",
"build": "lerna run build --stream --parallel --scope @re-flex/utils --scope @re-flex/styles --scope @re-flex/styled --scope @re-flex/ui",
"build:firebase": "lerna run build --stream;lerna serve && firebase deploy",
"gh-pages": "gh-pages -d dist",
"clear": "rm -rf **/package-lock.json **/*.d.ts **/yarn-error.log **/yarn.lock **/lib **/dist **/types **/*.js **/*.js.map",
"generateAnimatablePackage": "tsnd --respawn ./scripts/generateAnimations.ts"
},
"devDependencies": {
"@typescript/analyze-trace": "^0.9.0",
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.34",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.4",
"@babel/eslint-parser": "^7.17.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.2.0",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/user-event": "^14.2.0",
"@typescript-eslint/parser": "^5.25.0",
"@typescript-eslint/eslint-plugin": "^5.25.0",
"concurrently": "^7.2.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-mocha": "^10.0.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-react": "^7.30.0",
"fast-glob": "^3.2.11",
"fs-extra": "^10.1.0",
"gh-pages": "^4.0.0",
"got": "latest",
"glob": "latest",
"jsdom": "^19.0.0",
"lerna": "^4.0.0",
"benchmarkify": "^3.0.0",
"eslint": "^8.15.0",
"lodash": "^4.17.21",
"prettier": "2.6.2",
"transform-css-to-js": "^0.1.1",
"ts-node-dev": "latest",
"yargs": "^17.5.1",
"microbundle": "^0.15.0",
"typescript": "^4.6.4",
"@types/enzyme": "^3.10.12",
"@types/jest": "^27.5.1",
"dayjs": "^1.11.2",
"enzyme": "^3.11.0",
"jest-diff": "^28.1.0",
"react-docgen-typescript": "^2.2.2",
"react-table": "^7.8.0",
"react-test-renderer": "^18.1.0",
"tslib": "2.4.0"
}
}