-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.59 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.59 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
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
{
"name": "react-server-side-rendering",
"version": "1.0.0",
"description": "",
"scripts": {
"prestart": "npm run build",
"start": "node ./build/server",
"build": "npm run build-server && npm run build-client && npm run copy-public",
"build-server": "tsc",
"build-client": "webpack",
"copy-public": "cp -r ./src/public/images ./build/public",
"watch-client": "webpack --watch",
"watch-server": "tsc --watch",
"watch-node": "nodemon build/server.js",
"watch": "concurrently -k -p \"[{name}]\" -n \"Client,Server,Node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-client\" \"npm run watch-server\" \"npm run watch-node\"",
"test": "NODE_ENV=test mocha -r ts-node/register './tests/**/*.spec.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/facundo-hm/react-server-side-rendering.git"
},
"author": "Facundo HM",
"license": "MIT",
"bugs": {
"url": "https://github.com/facundo-hm/react-server-side-rendering/issues"
},
"homepage": "https://github.com/facundo-hm/react-server-side-rendering#readme",
"main": "index.js",
"keywords": [],
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-http": "^3.0.5",
"@types/compression": "0.0.36",
"@types/debug": "0.0.31",
"@types/express": "^4.16.0",
"@types/http-errors": "^1.6.1",
"@types/jest": "^23.3.9",
"@types/morgan": "^1.7.35",
"@types/react": "^16.4.18",
"@types/react-dom": "^16.0.9",
"@types/react-router-dom": "^4.3.1",
"@types/reactstrap": "^6.4.2",
"@types/sinon": "^5.0.6",
"awesome-typescript-loader": "^5.2.1",
"babel-polyfill": "^6.26.0",
"base64-inline-loader": "^1.1.1",
"chai": "^4.2.0",
"chai-http": "^4.2.0",
"compression": "^1.7.3",
"concurrently": "^5.3.0",
"css-loader": "^1.0.1",
"husky": "^1.1.3",
"mini-css-extract-plugin": "^0.4.5",
"mocha": "^7.1.1",
"nodemon": "^1.18.9",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"ts-node": "^7.0.1",
"typescript": "^3.1.6",
"url-loader": "^1.1.2",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"debug": "^4.1.0",
"dotenv": "^6.1.0",
"ejs": "^2.6.1",
"express": "^4.16.4",
"express-validator": "^5.3.0",
"http-errors": "^1.7.1",
"morgan": "^1.9.1",
"react": "^16.6.1",
"react-app-polyfill": "^0.2.2",
"react-dom": "^16.6.1",
"react-google-login": "^4.0.0",
"react-icons": "^3.2.2",
"react-router-dom": "^4.3.1",
"react-stripe-checkout": "^2.6.3",
"reactstrap": "^6.5.0",
"sinon": "^7.1.1"
}
}