-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
41 lines (41 loc) · 1.37 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
{
"name": "nextjs-fullstackinator",
"version": "1.0.0",
"description": "Full of stack to the max. Nextjs with custom express server, Typescript, Redux, Saga, Styled-components and more",
"private": true,
"scripts": {
"start": "nodemon",
"build": "concurrently \"npm run build:client\" \"npm run build:server\"",
"build:client": "next build ./client",
"build:server": "tsc --project ./server/tsconfig.server.json",
"production": "cross-env NODE_ENV=production node distServer"
},
"author": "Kyle Gallagher",
"license": "MIT",
"dependencies": {
"es6-promise": "^4.2.8",
"express": "^4.17.1",
"next": "^9.0.2",
"next-redux-saga": "^3.0.0",
"next-redux-wrapper": "^2.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"redux": "^4.0.1",
"redux-actions": "^2.6.5",
"redux-saga": "^1.0.4",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/node": "^12.0.10",
"@types/react": "^16.8.22",
"@types/react-dom": "^16.8.4",
"babel-plugin-styled-components": "^1.10.4",
"concurrently": "^4.1.1",
"cross-env": "^5.2.0",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
}
}