-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "@derniercri/packages",
"version": "2.0.0",
"main": "lib/index.js",
"repository": "https://github.com/derniercri/packages",
"author": "Donovan BENFOUZARI <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"prebuild": "lerna exec --parallel -- rimraf lib",
"build": "lerna run build",
"test": "jest",
"prepare": "yarn build",
"lint": "eslint packages/**/src --ext .js,.jsx,.ts,.tsx",
"release": "./scripts/release.sh"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-typescript": "^7.10.4",
"@commitlint/cli": "^11.0.0",
"@types/jest": "^26.0.10",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.10.1",
"commitlint-config-gitmoji": "^2.2.1",
"eslint": "^7.8.1",
"eslint-config-prettier": "^7.0.0",
"gitmoji-changelog": "^2.1.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lerna": "^3.22.1",
"rimraf": "^3.0.2",
"typescript": "^4.0.2"
}
}