-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.27 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.27 KB
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
{
"name": "prattle",
"version": "1.0.0",
"description": "the official prattle repo",
"main": "index.js",
"type": "module",
"private": true,
"workspaces": [
"client",
"backend",
"packages/**/*"
],
"scripts": {
"start": "yarn --cwd backend start",
"build": "yarn && nx run-many --target=build",
"test": "yarn && nx run-many --target=test",
"emulators:start": "firebase emulators:start",
"prettier-format": "prettier --config .prettierrc './**/*.{js,mjs,cjs,ts,mts,cts,jsx,tsx,json}' --write",
"prettier-watch": "onchange './**/*.{js,mjs,cjs,ts,mts,cts,jsx,tsx,json}' -- prettier --config .prettierrc '{{file}}' --write '{{event}} to {{file}}'"
},
"license": "MIT",
"dependencies": {
"@nrwl/nx-cloud": "latest",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-refresh": "^0.4.1",
"lerna": "^6.6.2",
"nx": "^16.1.3",
"onchange": "^7.1.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"vite": "^4.3.5",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.31.0"
}
}