forked from emilwidlund/alma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.36 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
{
"name": "alma",
"version": "1.0.0",
"description": "Alma",
"private": true,
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"build": "npx lerna run build",
"build:prod": "npx lerna run build:prod",
"build:dev": "npx lerna run build -- --watch",
"dev": "npx lerna run dev",
"postinstall": "patch-package",
"start": "run-p build:dev dev",
"test": "npx lerna run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilwidlund/alma.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/emilwidlund/alma/issues"
},
"homepage": "https://github.com/emilwidlund/alma#readme",
"devDependencies": {
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-unused-imports": "^2.0.0",
"lerna": "^6.0.3",
"typescript": "^4.8.3"
},
"dependencies": {
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-import": "^2.26.0",
"npm-run-all": "^4.1.5",
"patch-package": "^6.5.0"
},
"workspaces": [
"packages/*"
]
}