forked from harrysolovay/rescripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.11 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.11 KB
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
{
"name": "rescripts",
"license": "MIT",
"private": true,
"author": "Harry Solovay <harrysolovay@gmail.com> (harrysolovay.com)",
"keywords": [
"rescript",
"rescripts",
"cra",
"create-react-app",
"create",
"react",
"app",
"scripts",
"cli",
"customization",
"custom",
"configuration",
"config"
],
"workspaces": [
"packages/cli",
"packages/utilities",
"packages/rescripts/*",
"packages/examples/*"
],
"devDependencies": {
"doctoc": "^1.4.0",
"eslint": "^5.9.0",
"eslint-plugin-ramda": "^2.5.1",
"husky": "^1.2.0",
"lerna": "^3.4.3",
"lint-staged": "^8.1.0",
"prettier": "^1.15.2"
},
"husky": {
"hooks": {
"pre-commit": "npm run doctoc && lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"scripts": {
"lint": "eslint --ignore-path .gitignore packages/**/*.js",
"doctoc": "doctoc README.md --maxlevel 2 --notitle",
"example": "cd packages/examples/editing-webpack-plugins && npm run start",
"clean": "rm -rf node_modules"
}
}