-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 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
{
"name": "next-pack-workspace",
"private": true,
"repository": "[email protected]:haydnhkim/next-pack.git",
"author": "Haydn Hyundong Kim <[email protected]>",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18.0.0 <19.0.0",
"npm": "=8.5.5",
"yarn": ">=3.2 <4"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"dev/*"
],
"dependencies": {
"@repacks/next-pack": "workspace:*",
"classlist-polyfill": "^1.2.0",
"eslint-config-react-app": "^7.0.1",
"html5shiv": "^3.7.3",
"intersection-observer": "^0.12.2",
"matchmedia-polyfill": "^0.3.2",
"proxy-polyfill": "^0.3.2",
"raf": "^3.4.1"
},
"devDependencies": {
"@playwright/test": "^1.29.2",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@trivago/prettier-plugin-sort-imports": "^4.0.0",
"cross-env": "^7.0.3",
"eslint-config-next": "^13.1.5",
"fast-glob": "^3.2.12",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"rollup": "^3.10.1",
"shelljs": "^0.8.5"
},
"scripts": {
"start": "yarn start:build && yarn start:server",
"start:build": "yarn workspace @repacks/next-app build",
"start:server": "NODE_ENV=production yarn workspace @repacks/next-app server",
"dev": "yarn build && yarn workspace @repacks/next-app dev",
"dev:esm": "yarn build && yarn workspace @repacks/next-app-esm dev",
"dev-server": "node utils/prerelease.js && yarn workspace @repacks/next-app server",
"dev-ie": "REACT_REFRESH=false yarn dev",
"build": "yarn build:polyfills && yarn build:eslint && node utils/prerelease.js",
"build:polyfills": "rollup --config rollup.config.js && node utils/wrap-polyfills.js",
"build:eslint": "node utils/create-eslint-config.js",
"test": "node utils/prerelease.js && playwright test",
"lint": "yarn workspace @repacks/next-app lint",
"format": "prettier --write 'packages/**/src/**/*.js' 'dev/**/src/**/*.js'",
"release": "yarn build && yarn workspace @repacks/next-pack release",
"teardown": "node utils/teardown.js",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,md,html,css}": [
"prettier --write"
]
}
}