-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1001 Bytes
/
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
{
"name": "aloe-frontend",
"version": "0.1.0",
"private": true,
"workspaces": [
"blend",
"earn",
"prime",
"shared"
],
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/eslint-parser": "^7.24.5",
"autoprefixer": "^10.4.2",
"babel-plugin-macros": "^3.1.0",
"concurrently": "^8.2.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"postcss": "^8.4.6",
"tailwindcss": "^3.0.18",
"twin.macro": "^2.8.2"
},
"scripts": {
"prettier": "prettier --write */src/**/*.{ts,tsx,json}",
"prettier:check": "prettier --check 'src/**/*.{ts,tsx,json}'",
"prepare": "husky install",
"test": "concurrently --group --prefix=\"none\" --kill-others-on-fail \"cd earn && yarn test\" \"cd prime && yarn test\" \"cd shared && yarn test\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*/src/**/*.{ts,tsx}": [
"yarn prettier"
]
}
}