forked from react-page/react-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.35 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"private": true,
"author": "ORY GmbH",
"license": "GNU Lesser General Public License v3.0",
"devDependencies": {
"@babel/cli": "7.2.0",
"@babel/core": "7.2.0",
"@babel/plugin-proposal-class-properties": "7.2.1",
"@babel/plugin-transform-modules-commonjs": "7.2.0",
"@babel/preset-env": "7.2.0",
"@babel/preset-react": "7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@material-ui/core": "^4.3.3",
"@material-ui/icons": "^4.2.1",
"@material-ui/styles": "^4.3.3",
"@types/jest": "^23.3.10",
"@types/react-dom": "^16.9.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.3",
"babel-jest": "^24.9.0",
"chokidar-cli": "^1.2.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"documentation": "9.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "1.7.1",
"gitbook-cli": "^2.3.0",
"husky": "^0.14.3",
"jest": "24.9.0",
"lerna": "3.6.0",
"npm-run-all": "4.1.5",
"postcss-cli": "^6.0.0",
"postcss-import": "^12.0.0",
"postcss-nested": "^3.0.0",
"postcss-preset-env": "^5.3.0",
"prettier": "1.19.1",
"prettier-tslint": "0.4.2",
"pushstate-server": "^3.0.0",
"q-deep": "1.0.3",
"react": "~16.9.0",
"react-dom": "~16.9.0",
"redux": "^3.6.0",
"rimraf": "2.6.2",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-react": "^3.6.0",
"typescript": "^3.7.3",
"unexpected": "^10.38.0"
},
"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 @react-page/examples --stream",
"build:watch": "cross-env NODE_ENV=development lerna run build:watch --parallel",
"clean": "lerna run clean && find . -name tsconfig-es.tsbuildinfo -delete && find . -name tsconfig.tsbuildinfo -delete",
"clean:lerna": "lerna clean --yes",
"docs:api": "cross-env NODE_ENV=development lerna run docs --stream",
"docs:guide": "gitbook serve -http",
"lint": "tslint -c ./tslint.json \"./**/src/**/*.ts?(x)\"",
"lint:watch": "npm-run-all watch:ts -- -c \"npm-run-all lint\"",
"prettier": " prettier-tslint fix \"packages/**/src/**/*.(ts|tsx)\"",
"publish": "lerna publish",
"start": "TSC_WATCHFILE=UseFsEventsWithFallbackDynamicPolling npm-run-all -p build:watch start:examples",
"start:examples": "cross-env NODE_ENV=development lerna run start --stream",
"test": "cross-env NODE_ENV=test jest --coverage",
"test:watch": "cross-env NODE_ENV=test jest --watch",
"watch:ts": "chokidar \"+(packages)/*/src/**/*.(ts|tsx)\" \"+(packages)/plugins/*/src/**/*.(ts|tsx)\" --initial",
"postinstall": "npm-run-all clean bootstrap build:lib",
"serve": "pushstate-server ./examples/build",
"heroku-prebuild": "git init",
"heroku-postbuild": "npm-run-all build"
},
"jest": {
"setupTestFrameworkScriptFile": "./config/jestTestSetup",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.(ts|tsx|js)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "./config/tsconfig.test.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/"
]
}
}