-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.3 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
{
"name": "timeflies",
"private": true,
"repository": {
"directory": ".",
"type": "git",
"url": "https://github.com/Chnapy/timeflies.git"
},
"author": "Chnapy <[email protected]>",
"workspaces": [
"packages/*"
],
"scripts": {
"p:start": "cd $INIT_CWD && tsc -w",
"p:test": "cd $INIT_CWD && jest --watch",
"p:test-ci": "cd $INIT_CWD && jest --passWithNoTests",
"p:build": "cd $INIT_CWD && rm -rf lib && tsc && yarn workspaces foreach run afterbuild",
"p:build-recursive": "cd $INIT_CWD && yarn workspaces foreach -vR --topological-dev run p:build",
"p:check-type": "cd $INIT_CWD && tsc --noEmit",
"p:check-lint": "cd $INIT_CWD && eslint src/ --ext .ts,.tsx,.js --cache",
"p:check-circ": "cd $INIT_CWD && madge --circular --warning --ts-config=../../tsconfig.json src/index.ts*",
"p:check-deps": "bash -c scripts/check-deps.sh",
"p:check-all": "cd $INIT_CWD && concurrently --kill-others-on-fail --names \"check-type,check-lint,check-deps\" -c \"cyan.dim,yellow.dim,magenta.dim\" \"yarn p:check-type\" \"yarn p:check-lint\" \"yarn p:check-deps\"",
"p:storybook": "cd $INIT_CWD && start-storybook -s ../devtools/public,../static-assets/public -p 6006",
"p:build-storybook": "cd $INIT_CWD && build-storybook",
"p:copyfiles": "cd $INIT_CWD && copyfiles",
"foreach-check-all": "yarn workspaces foreach -v --exclude '**/timeflies' run p:check-all",
"foreach-build-all": "yarn workspaces foreach -v --exclude '**/timeflies' run p:build-recursive",
"netlify-yarnrc-workaround": "bash scripts/generate-old-yarnrc.sh",
"heroku-postbuild": "yarn workspace @timeflies/backend build-all"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@material-ui/core": "^4.11.4",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.58",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addon-links": "^6.2.9",
"@storybook/react": "^6.2.9",
"@testing-library/react-hooks": "^5.1.2",
"@types/jest": "^26.0.23",
"@types/react": "^17.0.5",
"@types/ws": "^7.4.4",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"clsx": "^1.1.1",
"concurrently": "^6.1.0",
"copyfiles": "^2.4.1",
"eslint": "^7.26.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.3.0",
"glob": "^7.1.7",
"jest": "^26.6.3",
"madge": "^4.0.2",
"pixi.js": "^6.0.4",
"react": "^17.0.2",
"react-dom": "17.0.2",
"react-pixi-fiber": "1.0.0-beta.9",
"react-test-renderer": "^17.0.2",
"storybook": "^6.2.9",
"tiled-types": "^1.3.0",
"typescript": "^4.2.4",
"webpack": "^5.37.0"
},
"engineStrict": true,
"engines": {
"node": "^12"
},
"dependenciesMeta": {
"[email protected]": {
"unplugged": true
}
},
"license": "MIT"
}