-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
51 lines (51 loc) · 1.58 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
{
"private": true,
"workspaces": [
"packages/2d",
"packages/core",
"packages/create",
"packages/game",
"packages/inspector",
"packages/integration-tests",
"packages/scripts",
"packages/website"
],
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/preset-env": "^7.7.7",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.7",
"@workspace-builder/babel": "^1.0.1",
"@workspace-builder/shell-command": "^1.0.0",
"babel-eslint": "^10.0.3",
"babel-plugin-remove-prev-node": "^1.0.2",
"chalk": "^4.1.0",
"eslint": "^6.8.0",
"eslint-config-unobtrusive": "^1.2.5",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-react": "^7.18.0",
"prettier": "2.8.7",
"shelljs": "^0.8.4",
"typescript": "4.9.5",
"workspace-builder": "^1.0.0",
"yargs-parser": "^18.1.3"
},
"scripts": {
"clean": "workspace-builder clean",
"build": "workspace-builder",
"watch": "workspace-builder watch",
"start": "npm run watch",
"typecheck": "tsc --noEmit",
"test-it": "node ./packages/scripts/dist/cli.js test './packages/*/src/**/*.test.{ts,js,tsx,jsx}' '!**/node_modules/**'",
"test": "npm run typecheck && npm run test-it",
"build-website": "cd packages/website && npm run build"
},
"dependencies": {
"core-js": "^3.6.1",
"regenerator-runtime": "^0.13.3"
}
}