-
-
Notifications
You must be signed in to change notification settings - Fork 866
/
package.json
108 lines (108 loc) · 3.67 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
99
100
101
102
103
104
105
106
107
108
{
"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": {
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.21.0",
"all-contributors-cli": "^6.14.2",
"axios": "^0.21.2",
"doctoc": "^1.4.0",
"eslint": "^6.8.0",
"execa": "5.0.0",
"fs-extra": "^9.1.0",
"glob": "^7.1.6",
"got": "^11.0.2",
"html-webpack-plugin": "4.5.2",
"husky": "^4.2.3",
"inquirer": "^7.3.3",
"is-docker": "^2.1.1",
"jest": "^26.6.3",
"jest-html-reporters": "^2.1.2",
"leaked-handles": "^5.2.0",
"lerna": "^3.20.2",
"lerna-changelog": "^1.0.1",
"lint-staged": "^10.0.8",
"mini-css-extract-plugin": "^0.9.0",
"prettier": "^1.19.1",
"ps-tree": "1.2.0",
"puppeteer": "^7.0.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"recursive-copy": "^2.0.11",
"release": "^6.1.0",
"semver": "7.1.3",
"serve": "^11.3.2",
"shelljs": "^0.8.3",
"webpack": "4.46.0",
"webpack-dev-server": "^3.11.0"
},
"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.e2e.config.json --verbose --no-cache",
"test:examples": "jest --config ./test/jest.examples.config.js --verbose --no-cache",
"test:examples:simple": "jest --config ./test/jest.examples.config.js --verbose --no-cache -t simple",
"test:examples:complex": "cross-env COMPLEX=true jest --config ./test/jest.examples.config.js --verbose --no-cache -t complex",
"clean": "lerna clean --yes",
"format": "prettier --write 'packages/*/*.+(js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|mdx)' 'packages/*/!(node_modules)/**/*.js'",
"publish-all": "node ./scripts/publish-all.js",
"publish-all-stable": "yarn publish-all -c -t --push && release && node ./scripts/release-notes.js",
"publish-all-canary": "yarn publish-all -p canary -c -t --push && release --pre",
"publish-all-alpha": "yarn publish-all -p alpha -c -t --push && release --pre",
"pre-publish-all": "yarn build-docs && yarn update-examples",
"publish-to-npm": "node ./scripts/publish-to-npm.js",
"build-docs": "node ./scripts/build-docs.js",
"update-examples": "node ./scripts/update-examples.js",
"git-reset": "git reset --hard HEAD",
"git-clean": "git clean -d -x -e node_modules -e packages -f",
"yalc-publish-all": "node ./scripts/yalc-publish-all.js",
"try-example": "node ./scripts/try-example.js",
"new-example": "node ./scripts/new-example.js",
"bootstrap-examples": "node ./scripts/bootstrap-examples.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|mdx}": [
"yarn format"
]
},
"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/razzle-start-server-webpack-plugin",
"packages/babel-preset-razzle",
"packages/create-razzle-app",
"packages/razzle-dev-utils",
"packages/razzle-plugin-*"
],
"version": "4.2.15"
}