forked from jaredpalmer/razzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.26 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
{
"private": true,
"homepage": "https://github.com/jaredpalmer/razzle#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jaredpalmer/razzle.git"
},
"bugs": {
"url": "https://github.com/jaredpalmer/razzle/issues"
},
"resolutions": {
"**/**/node-gyp": "7.0.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"got": "^11.0.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"lerna-changelog": "^1.0.1",
"lint-staged": "^10.0.8",
"prettier": "^1.19.1",
"ps-tree": "1.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"release": "^6.1.0",
"semver": "7.1.3",
"serve": "^11.3.0",
"shelljs": "^0.8.3"
},
"scripts": {
"test": "yarn test:e2e",
"test:packages": "lerna run test --stream --scope razzle-* --ignore razzle-examples-* -- --passWithNoTests --verbose --no-cache",
"test:e2e": "jest --config ./test/jest.config.json --verbose --no-cache ",
"clean": "lerna clean --yes",
"format": "prettier --trailing-comma es5 --single-quote --write 'packages/*/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|mdx)' 'packages/*/!(node_modules)/**/*.js'",
"publish-canary": "lerna version prerelease --preid canary --force-publish && release --pre",
"publish-stable": "lerna version --force-publish && release && node ./scripts/release-notes.js",
"git-reset": "git reset --hard HEAD",
"git-clean": "git clean -d -x -e node_modules -e packages -f"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|mdx}": [
"prettier --trailing-comma es5 --single-quote --write",
"git add"
]
},
"dependencies": {},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/coverage/",
"<rootDir>/node_modules/",
"<rootDir>/examples/"
],
"collectCoverageFrom": [
"**/*.js"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/packages/*/node_modules/",
"<rootDir>/examples/",
"<rootDir>/coverage/"
]
},
"workspaces": [
"packages/razzle",
"packages/babel-preset-razzle",
"packages/create-razzle-app",
"packages/razzle-dev-utils",
"packages/razzle-plugin-*"
]
}