-
Notifications
You must be signed in to change notification settings - Fork 414
/
package.json
62 lines (62 loc) · 1.85 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
{
"name": "linaria-website",
"version": "6.2.0",
"private": true,
"description": "Linaria website",
"exports": {
".": "./src/index.jsx",
"./*": "./src/*.jsx"
},
"main": "./src/index.jsx",
"scripts": {
"build": "pnpm build:client && pnpm build:server",
"build:client": "cross-env NODE_ENV=production webpack",
"build:server": "cross-env NODE_ENV=production BABEL_ENV=server babel src --out-dir build",
"clean": "pnpm clean:client && pnpm clean:server",
"clean:client": "del dist",
"clean:server": "del build",
"lint:css": "stylelint src/**/*.jsx",
"prebuild": "pnpm clean",
"prestart": "pnpm -w prepare",
"server": "node build/server",
"start": "webpack serve"
},
"dependencies": {
"@babel/runtime": "^7.23.5",
"@linaria/atomic": "workspace:^",
"@linaria/core": "workspace:^",
"@linaria/react": "workspace:^",
"@linaria/server": "workspace:^",
"babel-plugin-file-loader": "^1.1.1",
"dedent": "^1.5.1",
"escape-html": "^1.0.3",
"ignore-styles": "^5.0.1",
"koa": "^2.7.0",
"koa-compress": "^3.0.0",
"koa-router": "^7.4.0",
"koa-send": "^5.0.0",
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@linaria/stylelint": "workspace:^",
"@wyw-in-js/babel-preset": "^0.5.3",
"@wyw-in-js/webpack-loader": "^0.5.3",
"babel-loader": "^8.2.5",
"babel-plugin-module-resolver": "^4.1.0",
"cross-env": "^7.0.3",
"css-hot-loader": "^1.4.4",
"css-loader": "^6.7.1",
"del-cli": "^1.1.0",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.6.0",
"stylelint": "^14.11.0",
"stylelint-config-recommended": "^3.0.0",
"url": "^0.11.0",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.9.1"
}
}