forked from gatsbyjs/gatsby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.5 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
{
"dependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"babel-runtime": "^6.23.0",
"create-react-class": "^15.6.0",
"eslint": "^4.2.0",
"eslint-config-google": "^0.9.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"flow-bin": "^0.42.0",
"glob": "^7.1.1",
"iflow-debug": "^1.0.15",
"iflow-lodash": "^1.1.24",
"iflow-react-router": "^1.2.1",
"jest": "^20.0.4",
"jest-cli": "^20.0.4",
"lerna": "^2.0.0-rc.5",
"plop": "^1.7.4",
"prettier": "^1.5.3",
"prettier-eslint-cli": "^4.1.1",
"prop-types": "^15.5.8",
"purdy": "^2.2.1",
"remotedev-server": "^0.2.3",
"rimraf": "^2.6.1"
},
"private": true,
"scripts": {
"build": "lerna run build",
"format": "npm run format-packages && npm run format-www && npm run format-examples && npm run format-scripts",
"format-examples": "prettier-eslint --write \"examples/**/gatsby-node.js\" \"examples/**/src/**/*.js\"",
"format-packages": "prettier-eslint --write \"packages/*/src/**/*.js\"",
"format-scripts": "prettier-eslint --write \"scripts/**/*.js\"",
"format-www": "prettier-eslint --write \"www/*.js\" \"www/src/**/*.js\"",
"lerna": "lerna",
"lint": "eslint --ext .js,.jsx --ignore-path .gitignore .",
"lint:flow": "babel-node scripts/flow-check.js",
"plop": "plop",
"postinstall": "lerna bootstrap",
"publish-canary": "lerna run build && lerna publish --canary --yes",
"publish-next": "lerna run build && lerna publish --npm-tag=next",
"publish": "lerna run build && lerna publish",
"remotedev": "remotedev --hostname=localhost --port=19999",
"test": "jest",
"test:watch": "jest --watch",
"test_bkup": "npm run lint && npm run test-node && npm run test-integration",
"watch": "lerna run watch --no-sort --stream --concurrency 999"
}
}