-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.17 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
70
{
"name": "isomorphic",
"version": "1.0.0",
"description": "ozanilbey's isomorphic web application boilerplate",
"main": "server.js",
"scripts": {
"build": "npm run build:client && npm run build:server",
"build:client": "NODE_ENV=production webpack --env.base=client",
"build:server": "NODE_ENV=production webpack --env.base=server",
"postinstall": "npm run build",
"start": "npm run start:production",
"start:production": "npm run build && node server.bundle.js",
"start:development": "npm run build && webpack-dev-server --hot --progress --env.base=client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ozanilbey/isomorphic.git"
},
"bugs": {
"url": "https://github.com/ozanilbey/isomorphic/issues"
},
"standard": {
"parser": "babel-eslint"
},
"author": "Ozan İlbey Yılmaz",
"license": "ISC",
"homepage": "https://github.com/ozanilbey/isomorphic#readme",
"dependencies": {
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"autoprefixer": "^9.8.4",
"babel-loader": "^8.1.0",
"compression-webpack-plugin": "^4.0.0",
"css-loader": "^3.6.0",
"express": "^4.17.1",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"jsonwebtoken": "^8.5.1",
"less": "^3.11.3",
"less-loader": "^6.2.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-loader": "^3.0.0",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^6.1.0",
"react-router-dom": "^5.2.0",
"terser-webpack-plugin": "^3.0.6",
"url-loader": "^4.1.0",
"webpack": "^4.43.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"speed-measure-webpack-plugin": "^1.3.3",
"standard": "^14.3.4",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-node-externals": "^1.7.2"
},
"engines": {
"node": "14.2.0",
"npm": "6.14.4"
}
}