-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
64 lines (64 loc) · 1.68 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
60
61
62
63
64
{
"name": "reform",
"version": "0.0.0",
"private": true,
"description": "Reasonably making forms with ReScript and React sound good",
"repository": "git@github.com:rescriptbr/reform.git",
"homepage": "https://github.com/rescriptbr/reform#readme",
"bugs": "https://github.com/rescriptbr/reform/issues",
"keywords": [
"reason",
"bucklescript",
"react",
"form",
"rescript",
"rescript-react",
"rescript-forms",
"rescript-react-forms",
"rescript-reform",
"reform"
],
"author": "Gabriel R. Abreu <grsabreu@gmail.com>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "7.2.1",
"@commitlint/config-conventional": "7.1.2",
"babel-loader": "^8.1.0",
"husky": "1.2.1",
"lint-staged": "^7.0.0",
"pre-commit": "^1.2.2"
},
"lint-staged": {
"*.res": [
"git add"
]
},
"pre-commit": "lint:staged",
"workspaces": [
"packages/reform",
"packages/website",
"packages/reschema"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint:staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"docs:watch": "yarn workspace website start",
"docs:build": "yarn workspace website build",
"res:watch": "rewatch watch",
"res:build": "rewatch build",
"res:clean": "rewatch clean",
"res:setup": "yarn workspace @rescriptbr/reform res:setup",
"test": "yarn workspace @rescriptbr/reform test",
"test:watch": "yarn workspace @rescriptbr/reform test:watch",
"lint:staged": "lint-staged",
"demo:build": "yarn workspace demo build"
},
"dependencies": {
"@rolandpeelen/rewatch": "0.0.12-0c3740d.0",
"rescript": "^11.0.0"
}
}