forked from ojkelly/yarn.build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.29 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
{
"name": "yarn.build",
"version": "1.0.0",
"author": "Owen Kelly",
"license": "MIT",
"workspaces": {
"packages": [
"packages/plugins/*",
"packages/examples/*",
"packages/examples/words/*",
"packages/examples/phrases/*"
]
},
"private": true,
"scripts": {
"preinstall": "node -e \"if (process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('This project uses Yarn. Things wil not work properly with npm. Use yarn: https://yarnpkg.com/en/docs/install')\"",
"clear:build-cache": "rimraf .yarn/local-build-cache.json"
},
"devDependencies": {
"@kablamo/eslint-plugin": "^1.0.1",
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-import-resolver-parcel": "^1.10.6",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.22.0",
"jest": "^26.6.3",
"jest-pnp-resolver": "^1.2.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"ts-pnp": "^1.2.0",
"typescript": "^4.1.3"
},
"engineStrict": true,
"engines": {
"node": ">=13.10.0"
},
"dependencies": {
"@yarnpkg/pnpify": "^2.4.0"
}
}