-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.83 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
{
"name": "react-ts-express",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/aabbccsmith/react-ts-express",
"author": "Alistair Smith <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node dist/index.js",
"build-react": "webpack --mode production",
"watch-server": "ts-node-dev src/server/index.ts",
"build-server": "tsc",
"build": "rimraf dist/&&yarn build-react&&yarn build-server",
"start-dev": "concurrently \"webpack-dev-server\" \"yarn watch-server\"",
"dev": "yarn start-dev",
"format": "prettier --write \"src/**/*.{js,ts,tsx,scss,html}\"",
"cleaninstall": "rimraf yarn.lock&&yarn install --force"
},
"dependencies": {
"express": "^4.17.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/express": "^4.17.7",
"@types/react": "^16.9.44",
"@types/react-dom": "^16.9.8",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"concurrently": "^5.2.0",
"css-loader": "^4.2.0",
"eslint": "^7.6.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-react": "^7.20.5",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"node-sass": "^4.14.1",
"prettier": "^2.0.5",
"reset-scss": "^1.0.0",
"rimraf": "^3.0.2",
"sass-loader": "^9.0.2",
"style-loader": "^1.2.1",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-node-externals": "^2.5.0"
}
}