-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.26 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": "@imvu/monorepo",
"version": "0.1.0",
"author": "David Katz",
"license": "MIT",
"private": true,
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --build",
"build:esm": "npm run -ws build:esm",
"docs:build": "docker build -t imvu/docs ./docs/",
"docs:serve": "docker run --rm -it -p 8000:8000 -v %cd%:/docs imvu/docs",
"test": "jest --coverage --verbose --ci"
},
"files": [
"packages",
"tsconfig.json",
"tsconfig.base.json",
"jest.config.json"
],
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-node": "^0.3.7",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"lerna": "^6.6.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"type-fest": "^3.11.0",
"typescript": "^5.0.4"
},
"dependencies": {
"dotenv": "^16.0.3"
}
}