-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.78 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
{
"name": "template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "rm -rf build && cross-env NODE_ENV=development tsc-watch -p tsconfig.server.json --onSuccess \"node build/index.js\"",
"dev:staging": "rm -rf build && cross-env NODE_ENV=staging tsc-watch -p tsconfig.server.json --onSuccess \"node build/index.js\"",
"dev:production": "rm -rf build && cross-env NODE_ENV=production tsc-watch -p tsconfig.server.json --onSuccess \"node build/index.js\"",
"production": "cross-env NODE_ENV=production node index.js",
"build": "rm -rf .next && rm -rf build && tsc -p tsconfig.server.json && next build && mv .next build/.next && cp package.json build && cp -r public build/public",
"start": "cd build && NODE_ENV=production node index.js",
"ssh": "ssh ubuntu@ -i ~/Documents/cert/Dekina.pem"
},
"dependencies": {
"@babel/plugin-proposal-decorators": "^7.7.4",
"@hapi/joi": "^16.1.8",
"@softlightweb/softlightweb-components": "^1.28.2",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.0.1",
"@types/express": "^4.17.2",
"@types/express-session": "^1.15.16",
"@types/hapi__joi": "^16.0.3",
"@types/mongoose": "^5.5.32",
"@types/morgan": "^1.7.37",
"@zeit/next-css": "^1.0.1",
"@zeit/next-sass": "^1.0.1",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link": "^1.2.13",
"apollo-link-http": "^1.5.16",
"apollo-link-ws": "^1.0.19",
"apollo-utilities": "^1.3.2",
"babel-plugin-module-resolver": "^3.2.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect-mongo": "^3.2.0",
"cross-env": "^6.0.3",
"custom-env": "^1.0.2",
"express": "^4.17.1",
"express-session": "^1.17.0",
"graphql": "^14.5.8",
"http-proxy-middleware": "^0.20.0",
"js-cookie": "^2.2.1",
"js-cookies": "^1.0.4",
"mongoose": "^5.7.13",
"morgan": "^1.9.1",
"next": "9.1.4",
"next-compose-plugins": "^2.2.0",
"next-cookies": "^2.0.3",
"next-i18next": "^2.1.1",
"next-images": "^1.2.0",
"next-optimized-images": "^2.5.4",
"next-progressbar": "^1.0.0",
"next-react-svg": "^1.1.0",
"next-redux-wrapper": "^4.0.1",
"next-server": "^9.0.5",
"next-size": "^2.1.0",
"next-with-apollo": "^4.3.0",
"react": "16.12.0",
"react-apollo": "^3.1.3",
"react-dom": "16.12.0",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-saga": "^1.1.3",
"redux-thunk": "^2.3.0",
"shrink-ray-current": "^4.1.2",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"subscriptions-transport-ws": "^0.9.16",
"tsc-watch": "^4.0.0"
},
"devDependencies": {
"@types/node": "^12.12.14",
"@types/react": "^16.9.13",
"typescript": "^3.7.2"
}
}