-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.02 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "web-next",
"version": "0.0.2",
"author": "chau duong",
"private": true,
"engines": {
"node": ">=16"
},
"scripts": {
"dev": "NODE_ENV=development ts-node --project tsconfig.server.json server/index.ts",
"build": "NODE_ENV=production next build && tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node .next/server/index.js",
"prod": "yarn build && yarn start",
"lint": "next lint --no-cache",
"analyze": "cross-env BUNDLE_ANALYZE=both next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest -u --coverage",
"gen": "plop",
"gen:single": "plop component single",
"gen:many": "plop component many",
"gen:redux": "plop redux"
},
"dependencies": {
"@types/node": "^14.0.13",
"@zeit/next-bundle-analyzer": "^0.1.2",
"babel-plugin-inline-dotenv": "^1.6.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"compression": "^1.7.3",
"cookie-parser": "^1.4.4",
"cross-env": "^7.0.2",
"dotenv": "^10.0.0",
"es6-promise": "^4.2.6",
"express": "^4.17.1",
"express-http-proxy": "^1.6.0",
"i18next": "^15.0.4",
"isomorphic-fetch": "^2.2.1",
"lru-cache": "^5.1.1",
"next": "^11.1.1",
"next-compose-plugins": "^2.1.1",
"next-i18next": "^4.4.2",
"next-offline": "^3.3.5",
"nprogress": "^0.2.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-i18next": "^10.1.2",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"styled-components": "^5.1.1",
"webpack": "^5.52.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^27.0.0",
"@types/react": "^16.8.3",
"@types/react-dom": "^16.8.1",
"@types/styled-jsx": "^2.2.8",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"babel-loader": "^8.2.2",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-styled-components": "^1.13.2",
"babel-preset-react-app": "^10.0.0",
"copy-webpack-plugin": "^4.6.0",
"cz-conventional-changelog": "2.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"html-webpack-plugin": "5.0.0-alpha.6",
"husky": "^1.3.1",
"inquirer-directory": "^2.2.0",
"jest": "^27.0.0",
"lint-staged": "^11.1.2",
"plop": "^2.7.1",
"plop-pack-fancy-comments": "^0.2.1",
"prettier": "^2.4.0",
"redux-mock-store": "^1.5.4",
"redux-testkit": "^1.0.6",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.2.4",
"webpack-pwa-manifest": "^4.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"license": "ISC"
}