forked from react-page/react-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.77 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
70
71
72
{
"private": true,
"author": "ORY GmbH",
"license": "GNU Lesser General Public License v3.0",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "7.2.3",
"chokidar-cli": "^1.2.0",
"coveralls": "^2.13.1",
"cross-env": "^5.0.0",
"documentation": "^5.2.2",
"enzyme": "^2.8.2",
"eslint": "4.1.1",
"eslint-config-react-app": "^2.0.0",
"eslint-plugin-flowtype": "2.34.1",
"eslint-plugin-import": "2.6.0",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.1.0",
"flow-bin": "^0.46.0",
"flow-typed": "^2.1.5",
"gitbook-cli": "^2.3.0",
"husky": "^0.13.3",
"lerna": "^2.1.2",
"lint-staged": "^3.4.1",
"npm-run-all": "^4.1.1",
"postcss-cli": "^4.0.0",
"postcss-cssnext": "^2.10.0",
"postcss-import": "^9.1.0",
"postcss-nested": "^2.0.2",
"prettier": "^1.6.1",
"pushstate-server": "^3.0.0",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-scripts": "^0.9.5",
"rimraf": "^2.6.1",
"unexpected": "^10.33.2"
},
"scripts": {
"coveralls": "cat ./coverage/lcov.info | coveralls",
"bootstrap": "lerna bootstrap",
"build": "cross-env NODE_ENV=production lerna run build --stream",
"build:lib": "cross-env NODE_ENV=production lerna run build --ignore ory-editor-examples --parallel --stream",
"build:watch": "cross-env NODE_ENV=development lerna run build:watch --parallel --stream",
"clean": "lerna run clean",
"clean:lerna": "lerna clean --yes",
"docs:api": "lerna run docs --stream",
"docs:guide": "gitbook serve -http",
"flow": "flow check --show-all-errors",
"flow:generate": "lerna run flow:generate",
"flow:watch": "npm run watch:js -- -c \"npm run flow\"",
"lint": "eslint \"+(packages)/**/*.js\"",
"lint:watch": "npm run watch:js -- -c \"npm run lint\"",
"prettier": "prettier --single-quote --parser flow --no-semi --write \"packages/*/src/**/*.js\" \"packages/plugins/*/*/src/**/*.js\" \"packages/plugins/*/*/src/*.js\"",
"publish": "lerna publish",
"start": "cross-env NODE_ENV=development npm-run-all build start:watch",
"start:watch": "npm-run-all -p build:watch start:examples",
"start:examples": "cross-env NODE_ENV=development lerna run start --parallel --stream",
"test": "cross-env NODE_ENV=test jest --coverage",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"watch:js": "chokidar \"+(packages)/*/src/**/*.js\" \"+(packages)/plugins/*/src/**/*.js\" --initial",
"postinstall": "npm-run-all clean clean:lerna bootstrap build:lib",
"serve": "pushstate-server ./examples/build",
"heroku-prebuild": "git init",
"heroku-postbuild": "npm run build"
},
"jest": {
"testPathIgnorePatterns": [
"/examples/"
]
}
}