-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.35 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
{
"name": "evolu.me",
"version": "0.8.0",
"private": true,
"scripts": {
"cleanNext": "rm -rf .next",
"predev": "npm run cleanNext",
"prebuild": "npm run cleanNext",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"clean": "rm -rf node_modules pnpm-lock.yaml .next",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"dependencies": {
"@effect/schema": "^0.66.14",
"@evolu/react": "^8.0.0",
"@lexical/react": "^0.14.5",
"@stylexjs/stylex": "^0.6.1",
"autoprefixer": "^10.4.19",
"dequal": "^2.0.3",
"effect": "^3.1.2",
"lexical": "^0.14.5",
"next": "14.2.3",
"postcss": "^8.4.38",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"react-native": "~0.73.8",
"react-native-web": "^0.19.11",
"temporal-polyfill": "^0.2.4"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@stylexjs/eslint-plugin": "^0.6.1",
"@stylexjs/nextjs-plugin": "^0.6.1",
"@types/node": "^20.12.8",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.3",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.5",
"prettier-plugin-jsdoc": "^1.3.0",
"typescript": "^5.4.5"
}
}