forked from digirati-co-uk/narrative-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.22 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
{
"name": "narrative-editor",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@fesk/module-release": "^0.0.2",
"babel-eslint": "^8.1.0",
"babel-jest": "^23.4.2",
"eslint": "^3.10.2",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-flow": "^2.29.1",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-prettier": "^2.4.0",
"flow-bin": "^0.61.0",
"husky": "^0.14.3",
"jest": "^23.5.0",
"lerna": "^2.11.0",
"lint-staged": "^6.0.0",
"prettier": "^1.9.2",
"webpack": "^4.8.3"
},
"devEngines": {
"node": "8.x"
},
"scripts": {
"precommit": "lint-staged",
"postinstall": "lerna link",
"test": "jest --coverage",
"test:coverage": "jest --verbose --coverage",
"test:watch": "jest --no-cache --coverage --watchAll",
"build-all": "lerna run build",
"release": "fesk-release --increment=patch",
"merge": "fesk-merge",
"start": "fesk-setup"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.{js,json,scss,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/jest.transform.js"
}
},
"license": "MIT"
}