forked from TrueCar/gluestick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.4 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
65
66
67
68
69
{
"name": "gluestick-packages",
"scripts": {
"lerna": "lerna",
"yarn:install": "lerna exec --concurrency=1 -- yarn install",
"yarn:install:ci": "lerna exec --concurrency=1 -- yarn install --frozen-lockfile",
"install:npm": "npm install && npm run build && lerna bootstrap",
"install:yarn": "yarn install && yarn run build && yarn run yarn:install && lerna bootstrap --concurrency=1",
"install:yarn:ci": "yarn install --frozen-lockfile && yarn run build && yarn run yarn:install:ci && lerna bootstrap --concurrency=1",
"clean": "lerna clean --yes",
"test": "jest --bail --no-cache -i",
"test-coverage": "npm run test -- --coverage",
"lint": "eslint ./packages",
"flow": "flow",
"ci": "npm run lint && npm run flow && npm run test-coverage",
"publish": "npm run build && ./scripts/deploy.js",
"e2e": "./scripts/e2e/runner.js",
"build": "node ./scripts/build.js",
"docs:clean": "rm -rf _book",
"docs:prepare": "gitbook install",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:build": "npm run docs:prepare && gitbook build -g TrueCar/gluestick"
},
"dependencies": {
"flow-typed": "2.1.5",
"gitbook": "^3.2.3",
"gitbook-cli": "^2.3.2",
"gitbook-plugin-anchorjs": "^1.1.1",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "2.0.0",
"gitbook-plugin-prism": "^2.3.0",
"jest": "20.0.4",
"lerna": "2.0.0-rc.5"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.2.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.50.0",
"flow-copy-source": "^1.2.0",
"glob": "^7.1.2",
"mkdirp": "0.5.1",
"node-fetch": "^1.7.1",
"prettier": "^1.5.3",
"rimraf": "2.6.1"
},
"jest": {
"notify": true,
"roots": [
"packages"
],
"transform": {
"\\.js$": "<rootDir>/jestTransform.js"
},
"testRegex": "(src|shared)/(.*/)?__tests__/.*\\.test\\.js$"
}
}