-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.4 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.4 KB
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
{
"name": "react-themes-demo",
"version": "1.0.0",
"description": "A React + styled-components custom themes demo app",
"main": "index.js",
"repository": "https://github.com/northflank-examples/react-themes-demo",
"author": "Tom Snelling",
"license": "MIT",
"private": false,
"scripts": {
"build:server": "esbuild src/server/index.js --outfile=dist/server.js --bundle --format=cjs --platform=node --loader:.js=jsx",
"build:app": "esbuild src/app/index.js --outfile=dist/app.js --bundle --format=cjs --loader:.js=jsx",
"build": "npm-run-all build:*",
"watch:server": "nodemon --watch src/server -e js -x \"yarn build:server\"",
"watch:app": "nodemon --watch src/app -e js -x \"yarn build\"",
"dev": "nodemon --watch dist dist/server.js",
"start": "npm-run-all --parallel watch:* dev"
},
"devDependencies": {
"esbuild": "^0.14.11",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1"
},
"dependencies": {
"cookie-parser": "^1.4.6",
"express": "^4.17.2",
"polished": "^4.1.3",
"react": "^17.0.2",
"react-cookie": "^4.1.1",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-router-dom": "^6.2.1",
"styled-components": "^5.3.3"
}
}