forked from SparkPost/heml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.81 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
{
"name": "heml-project",
"private": true,
"repository": "https://github.com/dragonzap/heml.git",
"author": "Dragonzap",
"scripts": {
"bootstrap": "lerna bootstrap",
"postinstall": "lerna link",
"prerelease": "yarn build",
"lint": "eslint **/*.ts **/*.tsx --fix",
"test": "jest",
"test-full": "npm run bootstrap && npm run build && npm run lint && jest ./test/*.spec.js",
"clean": "lerna run clean && lerna clean --yes",
"build": "lerna exec --parallel -- babel src --out-dir dist --source-maps --extensions .ts,.tsx --config-file ../../babel.config.js --delete-dir-on-start --no-comments",
"build:tsc": "lerna run build:tsc",
"publish": "lerna publish"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.4",
"@types/node": "^18.15.13",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"chalk": "^5.2.0",
"del": "^7.0.0",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.12.0",
"fancy-log": "^2.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lerna": "^4.0.0",
"prettier": "^2.8.7",
"require-all": "^3.0.0",
"through2": "^4.0.2",
"typescript": "^5.0.4"
},
"resolutions": {
"chalk": "^4.1.2"
},
"version": "1.5.2"
}