-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.45 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
81
82
{
"name": "nextjs-docker-base-template",
"version": "1.0.0",
"description": "A base template that will include several common tools and frameworks in a single docker container",
"main": "index.js",
"scripts": {
"analyze": "ANALYZE=true npm run build",
"build": "next build",
"cy": "npx cypress run --headed",
"dev": "next -p 3000",
"start": "docker-compose build && docker-compose up",
"start:dev": "CONFIG_ENV=dev next start",
"start:prod": "CONFIG_ENV=prod next start",
"test": "CONFIG_ENV=test jest -c config/jest/jest.config.js --coverage --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brothatru/NextJS-Docker-Base-Template.git"
},
"author": "michael trieu",
"license": "ISC",
"bugs": {
"url": "https://github.com/brothatru/NextJS-Docker-Base-Template/issues"
},
"homepage": "https://github.com/brothatru/NextJS-Docker-Base-Template#readme",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.28",
"@fortawesome/free-solid-svg-icons": "^5.13.0",
"@fortawesome/react-fontawesome": "^0.1.9",
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.9.1",
"@types/node": "^13.13.6",
"@types/react": "^16.9.35",
"dot-prop-immutable": "^2.1.0",
"lodash.merge": "^4.6.2",
"next": "^10.0.0",
"next-iron-session": "^4.1.11",
"next-redux-wrapper": "^6.0.0",
"node-fetch": "^2.6.1",
"node-sass": "^4.14.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"typescript": "^3.9.2"
},
"devDependencies": {
"@next/bundle-analyzer": "^9.4.0",
"@testing-library/jest-dom": "^5.8.0",
"@testing-library/react": "^10.4.0",
"@types/jest": "^25.2.3",
"babel-jest": "^26.1.0",
"child-process-promise": "^2.2.1",
"cypress": "^6.5.0",
"husky": "^4.2.5",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.1.0",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"redux-devtools-extension": "^2.13.8",
"ts-jest": "^26.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test",
"pre-push": "npm run test && npm run build"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md}": "prettier --write"
},
"prettier": {
"printWidth": 95,
"jsxSingleQuote": true,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
}
}