-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
89 lines (89 loc) · 3.37 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
{
"name": "@resolve-js/resolve",
"version": "0.34.3",
"private": true,
"repository": "https://github.com/reimagined/resolve.git",
"license": "MIT",
"workspaces": {
"packages": [
"packages/**/*",
"examples/js/*",
"examples/ts/*",
"tutorial/*",
"templates/js/*",
"templates/ts/*",
"internal/*",
"benchmarks",
"tests",
"website",
"functional-tests",
"functional-tests/app"
]
},
"scripts": {
"clean": "npm run clean:babel && npm run clean:packages && npx rimraf yarn-error.log && workspaces clean",
"clean:babel": "workspaces all \"npx rimraf dist lib types es coverage *.db* *.tsbuildinfo\" --parallel",
"clean:packages": "npx rimraf .packages",
"lint": "eslint . --ext=.js,.jsx,.ts,.tsx",
"lint:js": "eslint . --ext=.js,.jsx",
"lint:ts": "eslint . --ext=.ts,.tsx",
"mdis": "mdis",
"prepare": "babel-compile",
"build-packages": "build-packages",
"local-registry": "local-registry",
"prettier": "prettier --write \"**/**.{ts,tsx,js,json,babelrc}\"",
"prettier:check": "prettier --list-different \"**/**.{ts,tsx,js,json,babelrc}\"",
"test": "workspaces run-script test",
"test:coverage": "workspaces all \"yarn test --coverage --coverageReporters=lcov --color 2>&1\" && npx lcov-result-merger 'packages/**/lcov.info' 'lcov.info'",
"test:e2e": "workspaces run-script -i \"tutorial/**,templates/js/**,examples/js/**\" test:e2e",
"test:e2e:tutorial": "workspaces run-script -i \"examples/**,templates/**,packages/**\" test:e2e",
"test:e2e:js": "workspaces run-script -i \"examples/ts/**,templates/ts/**,packages/**\" test:e2e",
"test:integration": "workspaces run-script test:integration",
"test:integration-postgres": "cd tests && yarn test:postgres --color 2>&1",
"test:clean-snapshots": "workspaces all \"yarn test -u --color 2>&1\"",
"test:cra": "node internal/cra-test/bin/index.js all",
"test:cra:ts": "node internal/cra-test/bin/index.js ts",
"test:cra:js": "node internal/cra-test/bin/index.js js",
"workspace-manager": "node internal/workspace-manager/bin/index.js",
"validate-lock-file": "node validate-lock-file.js"
},
"resolutions": {
"**/@types/node": "14.17.5",
"@types/react": "17.0.5"
},
"dependencies": {
"react": "17.0.2"
},
"devDependencies": {
"@babel/core": "7.17.2",
"@babel/eslint-parser": "7.17.0",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-proposal-decorators": "7.17.2",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@babel/runtime": "7.17.2",
"@internal/helpers": "0.34.3",
"@testing-library/dom": "7.30.0",
"@typescript-eslint/eslint-plugin": "5.12.0",
"@typescript-eslint/parser": "5.12.0",
"@yarnpkg/lockfile": "1.1.0",
"babel-eslint": "10.1.0",
"babel-jest": "27.5.1",
"babel-plugin-transform-inline-environment-variables": "0.4.3",
"eslint": "8.9.0",
"eslint-config-prettier": "8.4.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-spellcheck": "0.0.19",
"eslint-plugin-jsx-a11y": "6.5.1",
"glob": "7.1.6",
"lcov-result-merger": "3.1.0",
"mdis": "0.0.9",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"ts-jest": "27.1.3",
"typescript": "4.5.5",
"webpack": "4.46.0"
}
}