-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.68 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
{
"private": true,
"name": "immutable-class-repo",
"version": "0.0.0",
"description": "Monorepo for immutable-class and related projects",
"keywords": [
"immutable",
"class"
],
"author": {
"name": "Vadim Ogievetsky",
"url": "http://vadim.ogievetsky.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "http://github.com/implydata/immutable-class.git"
},
"prettier": "@awesome-code-style/prettier-config",
"scripts": {
"compile": "npm run --ws --if-present compile",
"pretest": "npm run compile && npm run eslint",
"test": "npm run --ws --if-present test",
"autofix": "npm run eslint-fix && npm run prettify",
"eslint": "npm exec --ws -- eslint 'src/**/*.ts?(x)'",
"eslint-fix": "npm exec --ws -- eslint --fix --report-unused-disable-directives 'src/**/*.ts?(x)'",
"eslint-changed-only": "git diff --diff-filter=ACMR --cached --name-only | grep -E \\.tsx\\?$ | xargs ./node_modules/.bin/eslint",
"eslint-fix-changed-only": "npm run eslint-changed-only -- --fix",
"prettify": "npm exec --ws -- prettier --write 'src/**/*.{ts,tsx,scss}' './*.js'",
"prettify-check": "npm exec --ws -- prettier --check 'src/**/*.{ts,tsx,scss}' './*.js'"
},
"volta": {
"node": "20.18.0"
},
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@awesome-code-style/eslint-config": "^6.0.0-beta.0",
"@awesome-code-style/prettier-config": "^5.0.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/jest": "^29.5.13",
"eslint-plugin-notice": "^1.0.0",
"eslint": "^9.12.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5"
}
}