-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.25 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
{
"name": "notus-nextjs",
"homepage": "https://demos.creative-tim.com/notus-nextjs",
"version": "1.1.0",
"description": "Notus NextJS - A free Tailwind CSS, NextJS and React Ui Kit and Admin by Creative Tim.",
"repository": "https://github.com/creativetimofficial/notus-nextjs",
"license": "MIT",
"dependencies": {
"@fortawesome/fontawesome-free": "6.3.0",
"@popperjs/core": "2.11.6",
"@sentry/nextjs": "^7.44.2",
"@tailwindcss/forms": "0.5.3",
"axios": "^1.3.4",
"chart.js": "2.9.4",
"d3": "^7.8.2",
"formik": "^2.2.9",
"gulp": "4.0.2",
"gulp-append-prepend": "1.0.9",
"js-cookie": "^3.0.1",
"local-storage": "^2.0.0",
"moment": "^2.29.4",
"next": "13.2.1",
"react": "18.2.0",
"react-alert": "^7.0.3",
"react-alert-template-basic": "^1.0.2",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "18.2.0",
"react-icons": "^4.8.0",
"react-organizational-chart": "^2.2.0",
"react-redux": "^8.0.5",
"react-scripts": "5.0.1",
"redux": "^4.2.1",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"redux-saga": "^1.2.2",
"tailwindcss": "3.2.7",
"use-debounce": "^9.0.3",
"yup": "^1.0.1"
},
"scripts": {
"start": "NODE_URL=cerberus NODE_ENV=production NODE_PORT=4000 node server.js",
"start_staging": "NODE_URL=staging NODE_ENV=production NODE_PORT=4001 node server.js",
"start_dev": "NODE_URL=dev NODE_ENV=production NODE_PORT=4002 node server.js",
"build": "next build",
"export": "next export",
"dev": "next dev",
"build:only": "rm -rf node_modules/ && rm -rf yarn.lock && yarn install",
"install:clean": "rm -rf node_modules/ && rm -rf yarn.lock && npm install --legacy-peer-deps && npm run build:tailwind && npm run dev",
"build:tailwind": "tailwind styles/index.css -o styles/tailwind.css --minify"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"optionalDependencies": {
"typescript": "4.9.5"
},
"devDependencies": {
"autoprefixer": "10.4.13",
"postcss": "8.4.21"
}
}