This repository has been archived by the owner on Dec 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
53 lines (53 loc) · 1.87 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
{
"engines": {
"node": ">=v7.6.0",
"npm": ">=4.3.0"
},
"scripts": {
"postinstall": "npm run bootstrap && npm run dist",
"lint": "lerna run lint",
"test": "lerna run test",
"clean": "lerna run clean",
"dist": "lerna run dist",
"flow-check": "flow check",
"flow-typed-install": "rimraf flow-typed/npm && flow-typed install -o && lerna run flow-typed-install",
"bootstrap": "lerna bootstrap --scope=tessellate-* --include-filtered-dependencies --hoist --nohoist=tessellate-*",
"semantic-release": "lerna-semantic-release pre && lerna-semantic-release post && lerna-semantic-release perform",
"upgrade-dependencies": "ncu -u && lerna exec -- ./node_modules/.bin/ncu -u && npm run bootstrap",
"prettier": "prettier --print-width=100 --single-quote --write \"packages/tessellate-*/+(src|lib|client|server|static|test)/**/*.js\"",
"publish-docs": "cd docs && npm run publish"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-jest": "20.0.1",
"babel-plugin-syntax-flow": "6.18.0",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-preset-latest-minimal": "1.1.2",
"babel-preset-react": "6.24.1",
"commitizen": "2.9.6",
"cz-lerna-changelog": "1.2.1",
"eslint": "3.19.0",
"eslint-plugin-babel": "4.1.1",
"eslint-plugin-flowtype": "2.33.0",
"eslint-plugin-jest": "20.0.1",
"eslint-plugin-prettier": "2.0.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-react": "7.0.1",
"flow-bin": "0.46.0",
"flow-typed": "2.1.2",
"jest": "20.0.1",
"lerna": "2.0.0-rc.4",
"lerna-semantic-release": "9.1.0",
"npm-check-updates": "2.11.1",
"prettier": "1.3.1",
"rimraf": "2.6.1",
"supertest": "3.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}