-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.32 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
{
"name": "scribble",
"version": "0.2.0",
"author": "Victor Gorchilov",
"private": true,
"license": "MIT",
"scripts": {
"build": "rimraf build && yarn build:server && yarn build:next",
"build:next": "next build",
"build:server": "tsc --project tsconfig.server.json",
"create:component": "node ./helper_scripts/commands/create_component.js",
"create:page": "node ./helper_scripts/commands/create_page.js",
"dev": "nodemon .",
"format": "prettier --write .",
"lint": "eslint . --ext ts --ext tsx --ext js",
"start": "NODE_ENV=production node build/index.js",
"type-check": "tsc --pretty --noEmit"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"yarn lint",
"yarn format"
]
},
"nodemonConfig": {
"watch": [
"server/"
],
"exec": "ts-node --project tsconfig.server.json server/index.ts",
"ext": "js,json,ts",
"delay": 2500
},
"dependencies": {
"@prisma/client": "^3.4.2",
"axios": "^0.24.0",
"cypress": "^9.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"next": "^12.0.3",
"prisma": "^3.4.2",
"rc-slider": "^9.7.4",
"react": "^17.0.2",
"react-canvas-draw": "^1.2.1",
"react-copy-to-clipboard": "^5.0.4",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-responsive-carousel": "3.2.11",
"react-toastify": "^8.1.0",
"semantic-ui-css": "^2.4.1",
"semantic-ui-react": "^2.0.4",
"socket.io": "^4.3.2",
"socket.io-client": "^4.3.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/register": "^7.16.0",
"@types/express": "^4.17.13",
"@types/node": "^16.11.7",
"@types/react": "^17.0.34",
"@types/react-canvas-draw": "^1.1.1",
"@types/react-copy-to-clipboard": "^5.0.2",
"@types/react-dom": "^17.0.11",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-react": "^7.27.0",
"handlebars": "^4.7.7",
"husky": "^7.0.4",
"inquirer": "^8.2.0",
"lint-staged": "^12.0.2",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"sass": "^1.43.4",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}