-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "@apps/web",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"dev": "next",
"start": "next start",
"lint": "eslint components",
"build": "next build",
"build:server": "NEXT_TARGET=server next build",
"export:server": "NEXT_TARGET=server next export",
"export": "npm run build:server && npm run export:server",
"start:static": "serve",
"now-build": "next build",
"analyze": "ANALYZE=true yarn build"
},
"dependencies": {
"@next/bundle-analyzer": "^9.4.0",
"@shared/assets": "1.0.0",
"@shared/config": "1.0.0",
"@shared/context": "1.0.0",
"@shared/hooks": "1.0.0",
"@shared/i18n": "1.0.0",
"@shared/store": "1.0.0",
"@shared/utils": "1.0.0",
"@shared/view": "1.0.0",
"next": "^11.1.0",
"next-compose-plugins": "^2.2.0",
"next-images": "^1.4.0",
"next-redux-wrapper": "^6.0.0",
"next-transpile-modules": "^3.3.0",
"nprogress": "^0.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"sass": "^1.26.5",
"tailwind": "^4.0.0"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"tailwindcss": "^1.4.6"
}
}