-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 2.16 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
{
"name": "ts-react-spa-ssr-boilerplate",
"version": "0.1.0",
"author": "nabeliwo",
"description": "React SPA boiler plate corresponding to SSR written in TypeScript.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nabeliwo/ts-react-spa-ssr-boilerplate.git"
},
"bugs": {
"url": "https://github.com/nabeliwo/ts-react-spa-ssr-boilerplate/issues"
},
"homepage": "https://github.com/nabeliwo/ts-react-spa-ssr-boilerplate#readme",
"scripts": {
"dev:client": "cross-env NODE_ENV=development webpack-dev-server --mode development --config ./tools/webpack/client.config.js",
"dev:server": "cross-env NODE_ENV=development webpack --mode development --config ./tools/webpack/server.config.js -w",
"dev": "nodemon ./dist/server.bundle.js",
"lint": "tslint 'src/**/*.ts{,x}'",
"format": "tslint --fix 'src/**/*.ts{,x}'",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"git add"
]
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/compression": "^0.0.36",
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.11.1",
"@types/morgan": "^1.7.35",
"@types/node": "^10.3.0",
"@types/react": "^16.3.16",
"@types/react-dom": "^16.0.5",
"@types/serve-favicon": "^2.2.30",
"@types/webpack-env": "^1.13.6",
"awesome-typescript-loader": "^5.0.0",
"cross-env": "^5.1.6",
"husky": "^0.14.3",
"lint-staged": "^7.1.3",
"nodemon": "^1.17.5",
"npm-run-all": "^4.1.3",
"prettier": "^1.13.4",
"react-hot-loader": "^4.2.0",
"tslint": "^5.10.0",
"tslint-config-prettier": "^1.13.0",
"tslint-plugin-prettier": "^1.3.0",
"tslint-react": "^3.6.0",
"typescript": "^2.9.1",
"webpack": "^4.10.2",
"webpack-cli": "^3.0.0",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"cookie-parser": "^1.4.3",
"express": "^4.16.3",
"morgan": "^1.9.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"serve-favicon": "^2.5.0"
}
}