-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 2.84 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
98
99
100
101
102
103
104
105
{
"name": "notes-app",
"version": "2.0.0",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"start": "next start",
"env-decrypt": "./scripts/crypto/age.linux.bin -d .env.age > .env",
"env-encrypt": "./scripts/crypto/age.linux.bin -p .env > .env.age",
"env-decrypt-win": "scripts\\crypto\\age.win.exe -d .env.age > .env",
"env-encrypt-win": "scripts\\crypto\\age.win.exe -p .env > .env.age",
"postinstall": "patch-package",
"prisma-ts": "prisma generate"
},
"dependencies": {
"@koa/cors": "5.0.0",
"@prisma/client": "^4.1.1",
"async-busboy": "0.6.2",
"axios": "1.7.5",
"axios-mock-adapter": "1.15.0",
"classnames": "2.2.5",
"dotenv-safe": "5.0.1",
"final-form": "4.5.2",
"hoist-non-react-statics": "2.5.0",
"http-status-codes": "1.3.0",
"immer": "9.0.6",
"joi": "13.2.0",
"koa": "2.5.0",
"koa-body": "^4.2.0",
"koa-passport": "4.0.1",
"koa-proxy": "^0.9.0",
"koa-router": "7.4.0",
"koa-session": "5.0.0",
"localforage": "1.7.1",
"lodash": "4.17.13",
"lru-cache": "^5.1.1",
"mime-types": "2.1.18",
"next": "14.2.22",
"next-pwa": "^5.4.4",
"nodemailer": "^6.9.9",
"passport-local": "^1.0.0",
"pg": "^8.0.3",
"pg-hstore": "2.3.2",
"react": "17.0.2",
"react-beautiful-dnd": "7.1.2",
"react-collapse": "^5.1.1",
"react-dom": "17.0.2",
"react-final-form": "2.1.1",
"react-height": "3.0.0",
"react-modal": "3.4.4",
"react-motion": "0.5.2",
"react-redux": "5.0.7",
"react-transition-group": "2.3.1",
"recompose": "0.26.0",
"redux": "3.7.2",
"redux-actions": "2.3.0",
"redux-optimistic-ui": "3.1.0",
"redux-saga": "0.16.0",
"reselect": "3.0.1",
"serialize-javascript": "3.1.0",
"shortid": "2.2.8",
"smoothscroll-polyfill": "0.4.0",
"snarkdown": "^2.0.0",
"stream-meter": "1.0.4",
"uuid": "3.2.1",
"winston": "3.0.0-rc6",
"xss": "^1.0.10"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "16.11.6",
"@types/react": "^17.0.34",
"copy-webpack-plugin": "^9.1.0",
"enzyme": "^3.11.0",
"eslint": "7",
"eslint-config-next": "12.0.3",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"lint-staged": "^13.2.1",
"patch-package": "^6.4.7",
"prettier": "^2.4.1",
"prisma": "^4.1.1",
"react-test-renderer": "^17.0.2",
"sass": "^1.43.4",
"simple-git-hooks": "^2.7.0",
"stylelint": "^15.10.1",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^4.6.0",
"typescript": "^4.4.4"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
],
"src/**/*.scss": [
"stylelint --fix"
]
}
}