-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
117 lines (117 loc) · 5.45 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
109
110
111
112
113
114
115
116
117
{
"name": "project-watchtower",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"license": "MIT",
"author": {
"name": "Seven West Media"
},
"repository": {
"type": "github",
"url": "https://github.com/sevenwestmedia/project-watchtower"
},
"description": "",
"keywords": [],
"scripts": {
"lint": "eslint --ext .js,.ts .",
"build": "tsc -b tsconfig.build.json",
"verify": "yarn lint && yarn coverage",
"pretest": "yarn build",
"test": "jest --config jest.json --forceExit",
"precoverage": "yarn build",
"coverage": "yarn test --coverage --forceExit",
"watch": "yarn build --watch",
"prepwt": "yarn build",
"pwt": "node packages/cli/index.js",
"changeset": "changeset",
"release": "yarn verify && changeset publish",
"~~ example projects ~~": "",
"~~~ bundle-splitting ~~~": "",
"build:bundle-splitting-example": "yarn pwt build -p examples/bundle-splitting",
"watch:bundle-splitting-example": "yarn pwt watch -p examples/bundle-splitting",
"explore-bundle:bundle-splitting-example": "yarn pwt explore-bundle -p examples/bundle-splitting",
"~~~ client-only ~~~": "",
"build:client-only-example": "yarn pwt build -p examples/client-only",
"watch:client-only-example": "yarn pwt watch -p examples/client-only",
"debug:client-only-example": "yarn pwt watch debug-brk -p examples/client-only",
"explore-bundle:client-only-example": "yarn pwt explore-bundle -p examples/client-only",
"~~~ with-server ~~~": "",
"build:with-server-example": "yarn pwt build -p examples/with-server",
"watch:with-server-example": "yarn pwt watch server -p examples/with-server",
"explore-bundle:with-server-example": "yarn pwt explore-bundle -p examples/with-server",
"~~~ simple-ssr ~~~": "",
"build:simple-ssr-example": "yarn pwt build -p examples/simple-ssr",
"watch:simple-ssr-example": "yarn pwt watch server -p examples/simple-ssr",
"explore-bundle:simple-ssr-example": "yarn pwt explore-bundle -p examples/simple-ssr",
"~~~ ssr-with-routing ~~~": "",
"build:ssr-with-routing-example": "yarn pwt build -p examples/ssr-with-routing",
"watch:ssr-with-routing-example": "yarn pwt watch server -p examples/ssr-with-routing",
"explore-bundle:ssr-with-routing-example": "yarn pwt explore-bundle -p examples/ssr-with-routing",
"~~~ ssr-with-data-loading-using-redux ~~~": "",
"build:ssr-with-data-loading-using-redux-example": "yarn pwt build -p examples/ssr-with-data-loading-using-redux",
"watch:ssr-with-data-loading-using-redux-example": "yarn pwt watch server -p examples/ssr-with-data-loading-using-redux",
"explore-bundle:ssr-with-data-loading-using-redux-example": "yarn pwt explore-bundle -p examples/ssr-with-data-loading-using-redux",
"~~~ emotion-css-in-js ~~~": "",
"build:emotion-css-in-js-example": "yarn pwt build -p examples/emotion-css-in-js",
"watch:emotion-css-in-js-example": "yarn pwt watch server -p examples/emotion-css-in-js",
"explore-bundle:emotion-css-in-js-example": "yarn pwt explore-bundle -p examples/emotion-css-in-js",
"~~~ ssr-with-sass ~~~": "",
"build:ssr-with-sass-example": "NODE_PATH=examples/ssr-with-sass/node_modules yarn pwt build -p examples/ssr-with-sass",
"watch:ssr-with-sass-example": "yarn pwt watch server -p examples/ssr-with-sass",
"explore-bundle:ssr-with-sass-example": "yarn pwt explore-bundle -p examples/ssr-with-sass"
},
"devDependencies": {
"promise-completion-source": "^1.0.0"
},
"dependencies": {
"@babel/core": "^7.12.17",
"@babel/runtime": "7.12.18",
"@changesets/cli": "^2.10.2",
"@types/assets-webpack-plugin": "^7.1.5",
"@types/express": "^4.17.21",
"@types/html-webpack-plugin": "^3.2.9",
"@types/http-proxy-middleware": "^0.19.3",
"@types/jest": "^26.0.14",
"@types/md5": "^2.2.0",
"@types/mkdirp": "^1.0.1",
"@types/node": "^18.17.0",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-helmet": "^6.1.0",
"@types/react-router-dom": "^5.1.5",
"@types/rimraf": "^3.0.0",
"@types/serialize-javascript": "^4.0.0",
"@types/supertest": "^2.0.10",
"@types/webpack-bundle-analyzer": "^3.8.0",
"@types/webpack-env": "^1.15.3",
"@types/webpack-hot-middleware": "^2.25.3",
"@types/webpack-merge": "^4.1.5",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-wanews": "^2.2.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"express": "^4.17.1",
"jest": "^29.7.0",
"prettier": "^2.1.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet-async": "^1.0.7",
"react-router-dom": "^5.2.0",
"serialize-javascript": "^5.0.1",
"supertest": "^4.0.2",
"ts-jest": "^29.1.4",
"tslib": "^2.6.2",
"typescript": "^5.4.2",
"typescript-log": "^2.0.0",
"url": "^0.11.3",
"util": "^0.12.5",
"webpack": "^5.0.0"
},
"version": "0.0.0"
}