-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "@jsrepl/jsrepl.io",
"description": "JavaScript REPL & Playground",
"version": "0.9.0",
"private": true,
"type": "module",
"license": "MIT",
"homepage": "https://jsrepl.io",
"author": {
"name": "Aleksei Nagovitsyn",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsrepl/jsrepl.io.git"
},
"scripts": {
"prepare": "husky",
"build": "turbo run build",
"dev": "turbo run dev",
"preview": "turbo run preview",
"lint": "turbo run lint",
"test": "turbo run test",
"test:vitest": "turbo run test:vitest",
"test:vitest:watch": "turbo run test:vitest:watch",
"test:playwright": "turbo run test:playwright",
"test:playwright:web-server:build": "turbo run test:playwright:web-server:build",
"test:playwright:web-server:start": "turbo run test:playwright:web-server:start",
"format": "prettier . --write"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "3.3.2",
"prettier-plugin-tailwindcss": "^0.6.5",
"turbo": "^2.2.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"pnpm": {
"patchedDependencies": {
"@babel/standalone": "patches/@babel__standalone.patch"
}
}
}