This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.56 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
{
"name": "@printerframework/website",
"version": "1.0.0",
"scripts": {
"dev": "next dev --port 4200",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext ts,tsx --resolve-plugins-relative-to .",
"scss": "node-sass --output-style compact -r public/assets/scss/printer.scss -o public/assets/css",
"prisma": "npx prisma generate && npx prisma db push"
},
"dependencies": {
"@monaco-editor/react": "^4.4.5",
"@prisma/client": "^4.1.0",
"@reduxjs/toolkit": "^1.7.1",
"iron-session": "^6.1.2",
"monaco": "^1.201704190613.0",
"next": "^12.0.7",
"next-redux-wrapper": "^7.0.5",
"prisma": "^4.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.12.0",
"react-redux": "^7.2.6",
"react-typing-effect": "^2.0.5",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@types/node": "^17.0.13",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"babel-plugin-styled-components": "^2.0.2",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-react": "^7.29.3",
"node-sass": "^9.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
}
}