-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 2.02 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
{
"name": "@undercut/monorepo",
"version": "1.0.0",
"description": "A monorepo containing all undercut packages",
"author": "Anton Alexandrenok",
"license": "MIT",
"type": "module",
"private": true,
"scripts": {
"build:snap": ". scripts/snap.sh",
"clear": ". scripts/clear.sh",
"lerna": "lerna",
"lint": "./scripts/lint.sh",
"postinstall": "patch-package",
"release": "lerna version --no-git-tag-version --no-private --no-push --conventional-commits",
"test": "yarn test:unit",
"test:all": "jest",
"test:int": "jest --testPathPattern='\\.test\\.int\\.(js|ts)$'",
"test:unit": "jest --testPathPattern='\\.test\\.(js|ts)$'",
"ts": "tsc --noEmit",
"undercut": "node --loader babel-register-esm ./packages/undercut-cli/src/bin.js"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@babel/eslint-plugin": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.16",
"@spyke/conventional-changelog-preset": "^1.0.2",
"@spyke/eslint-config": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"@undercut/config": "^1.0.0",
"babel-jest": "^26.6.3",
"babel-plugin-add-import-extension": "=1.6.0",
"babel-register-esm": "^1.1.3",
"core-js": "^3.8.1",
"eslint": "^7.15.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"jest-junit": "^12.0.0",
"json": "^10.0.0",
"lerna": "^3.22.1",
"patch-package": "^6.4.7",
"postinstall-postinstall": "^2.1.0",
"typescript": "^4.1.5"
},
"resolutions": {
"**/core-js": "^3.8.1",
"**/shelljs": "^0.8.4",
"**/terser-webpack-plugin": "^1.4.3"
},
"workspaces": [
"packages/*",
"website"
],
"homepage": "https://undercut.js.org",
"repository": {
"type": "git",
"url": "https://github.com/the-spyke/undercut"
}
}