forked from rescriptbr/reform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.3 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
{
"name": "reform",
"version": "0.0.0",
"private": true,
"description": "Reasonably making forms sound good again",
"repository": "[email protected]:Astrocoders/reform.git",
"homepage": "https://github.com/Astrocoders/reform#readme",
"bugs": "https://github.com/Astrocoders/reform/issues",
"keywords": [
"reason",
"bucklescript",
"react",
"form"
],
"author": "Gabriel R. Abreu <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "7.2.1",
"@commitlint/config-conventional": "7.1.2",
"husky": "1.2.1",
"lerna": "^3.14.1",
"lint-staged": "^7.0.0",
"pre-commit": "^1.2.2"
},
"lint-staged": {
"*.re": [
"bsrefmt --in-place",
"git add"
]
},
"pre-commit": "lint:staged",
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/graphql_ppx",
"**/graphql_ppx/**",
"**/lenses_ppx",
"**/lenses_ppx/**"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"start": "yarn bs:watch",
"test": "yarn bs:build",
"bs:build": "lerna run bs:build",
"bs:watch": "lerna run bs:watch",
"lint:staged": "lint-staged",
"bs:setup": "bsb -make-world"
}
}