-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
59 lines (59 loc) · 1.79 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
{
"name": "@feed-components/root",
"version:": "1.0.0",
"private": true,
"workspaces": {
"packages": [
"blocks/*",
"utils/*"
]
},
"dependencies": {
"react": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@manypkg/cli": "^0.21.2",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-standard": "^5.0.0",
"husky": "^9.0.10",
"jest": "^29.7.0",
"jest-watch-typeahead": "^2.2.2",
"jsdom": "^24.0.0",
"lerna": "^8.1.2",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"scripts": {
"build": "npm run build --workspaces",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint . --ext .js --ext .jsx",
"lint:prettier": "prettier --check \"./{blocks,utils}/**/*.js\"",
"prettier": "prettier --write \"**/*.{js,jsx}\"",
"test": "jest --config=jest.config.js",
"ci": "npm run lint && npm run build && npm run test",
"release:snapshotDev": "changeset version --snapshot canary",
"release:develop": "changeset publish --tag canary",
"release:snapshotSandbox": "changeset version --snapshot beta",
"release:sandbox": "changeset publish --tag beta",
"release:prod": "changeset publish --tag stable"
}
}