-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.38 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
75
76
77
78
79
80
{
"name": "template-next-express-react",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"tsc": "tsc",
"prod:server": "NODE_ENV=production ts-node --files --transpile-only ./server/index.ts",
"dev:server": "ts-node --files --transpile-only ./server/index.ts",
"start": "npm run prod:server",
"dev": "./node_modules/nodemon/bin/nodemon.js --watch 'server/**/*.ts' --exec 'npm run dev:server'",
"nodemon": "./node_modules/nodemon/bin/nodemon.js",
"next:build": "next build",
"prod:build": "NODE_OPTIONS=--max_old_space_size=1024 next build",
"lint:ts": "tslint -c tslint.json '**.ts*'",
"pretty": "prettier --write client/**/*.ts* server/**/*.ts",
"precommit": "lint-staged",
"jest": "NODE_ENV=test ./node_modules/.bin/jest",
"jest:watch": "NODE_ENV=test ./node_modules/.bin/jest --watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"@zeit/next-typescript": "^1.1.1",
"babel-plugin-module-resolver": "^3.2.0",
"body-parser": "^1.18.3",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"express-async-handler": "^1.1.4",
"express-response-errors": "^1.0.4",
"fork-ts-checker-webpack-plugin": "^1.3.7",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.14",
"module-alias": "^2.2.0",
"morgan": "^1.9.1",
"next": "^8.1.0",
"nodemon": "^1.18.11",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"semantic-ui-react": "^0.86.0",
"ts-node": "^8.1.0",
"typescript": "^3.4.4"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.16.1",
"@types/isomorphic-fetch": "0.0.35",
"@types/jest": "^24.0.18",
"@types/module-alias": "^2.0.0",
"@types/morgan": "^1.7.35",
"@types/next": "^8.0.3",
"@types/node": "^12.0.10",
"@types/react": "^16.8.23",
"@types/styled-jsx": "^2.2.8",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lint-staged": "^8.1.5",
"node-typescript": "^0.1.3",
"prettier": "^1.17.0",
"ts-jest": "^24.1.0",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"webpack-bundle-analyzer": "^3.3.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"npm run pretty",
"git add"
]
},
"prettier": {
"trailingComma": "all",
"singleQuote": true
},
"_moduleAliases": {
"server": "server",
"client": "client"
}
}