-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
74 lines (74 loc) · 2.04 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
71
72
73
74
{
"name": "oh-my-fullstack",
"version": "1.0.0",
"description": "Full stack web application skeleton",
"keywords": [
"skeleton",
"starter kit",
"boilerplate",
"fullstack",
"isomorphic",
"react",
"next",
"redux",
"rxjs",
"ssr"
],
"repository": "oh-my-c0de/oh-my-fullstack.git",
"author": "DK <[email protected]>",
"license": "Beerware",
"scripts": {
"start": "NODE_ENV=development nodemon -w server server -x babel-node",
"build": "yarn build:server && yarn build:client",
"build:server": "NODE_ENV=production rimraf .server-dist && babel server -d .server-dist --copy-files",
"build:client": "NODE_ENV=production next build",
"preprod:start": "yarn build:server && yarn build:client",
"prod:start": "NODE_ENV=production pm2 start .server-dist --name \"oh-my-fullstack\" -i max",
"prod:stop": "pm2 delete oh-my-fullstack",
"prod:restart": "pm2 restart oh-my-fullstack",
"lint": "eslint . --ext .js"
},
"dependencies": {
"antd": "^3.10.9",
"axios": "^0.21.1",
"body-parser": "^1.18.3",
"boom": "^7.3.0",
"cors": "^2.8.5",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"helmet": "^3.15.0",
"immutable": "^4.0.0-rc.12",
"next": "^9.5.4",
"prop-types": "^15.6.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^5.1.1",
"redux": "^4.0.1",
"redux-actions": "^2.6.4",
"redux-immutable": "^4.0.0",
"redux-observable": "^1.0.0",
"rxjs": "^6.3.3",
"winston": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/node": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-preset-airbnb": "^3.0.1",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.2.0",
"nodemon": "^1.18.7",
"webpack": "^4.26.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
}
}