-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.97 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
{
"name": "nano-jsx-template",
"version": "0.0.8",
"description": "Nano JSX Template using Isomorphic JSX.",
"scripts": {
"start": "npm run clean && npm run dev",
"serve": "node dist/server.bundle.js",
"build": "npm run clean && npm-run-all --parallel prod:*",
"dev": "webpack --config webpack/webpack.client.dev.cjs && webpack --config webpack/webpack.server.cjs && npm-run-all --parallel dev:*",
"dev:nodemon": "nodemon --watch src --ext css,scss,sass,js,ts,tsx,webmanifest --watch dist dist/server.bundle.js",
"dev:webpack-client": "webpack --config webpack/webpack.client.dev.cjs --watch",
"dev:webpack-server": "webpack --config webpack/webpack.server.cjs --watch",
"prod:webpack-client": "webpack --config webpack/webpack.client.prod.cjs",
"prod:webpack-server": "webpack --config webpack/webpack.server.prod.cjs",
"postinstall": "npm run build",
"clean": "rimraf dist",
"format:check": "prettier --check src/**/*",
"format": "prettier --write src/**/*"
},
"keywords": [],
"author": "Yannick Deubel (https://github.com/yandeu)",
"license": "MIT",
"engines": {
"node": ">=14"
},
"dependencies": {
"compression": "^1.7.4",
"express": "^4.17.2",
"nano-jsx": "^0.0.34"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/node-fetch": "^2.5.8",
"@yandeu/prettier-config": "^0.0.3",
"autoprefixer": "^10.4.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.5.1",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"null-loader": "^4.0.1",
"postcss-loader": "^7.0.1",
"prettier": "^2.5.1",
"resolve-typescript-plugin": "^1.2.0",
"rimraf": "^3.0.2",
"sass": "^1.45.1",
"sass-loader": "^13.1.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.6",
"typescript": "^4.8.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-manifest-plugin": "^5.0.0",
"webpack-merge": "^5.8.0",
"webpack-node-externals": "^3.0.0"
}
}