-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.73 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
50
51
52
53
54
{
"name": "pigment",
"version": "1.0.0",
"description": "admin app for tattoo artists and other creative professionals",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "concurrently \"yarn dev:client\" \"yarn dev:web\" ",
"client:dev": "yarn workspace client dev",
"client:build": "yarn workspace client build",
"api-service:dev": "yarn workspace api-service dev",
"api-service:build": "yarn workspace api-service prepack",
"form-helpers:dev": "yarn workspace form-helpers dev",
"form-helpers:build": "yarn workspace form-helpers prepack",
"web:dev": "yarn workspace web dev",
"web:build": "yarn workspace web build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/colinxr/pigment.git"
},
"author": "Colin Rabyniuk",
"license": "ISC",
"bugs": {
"url": "https://github.com/colinxr/pigment/issues"
},
"private": true,
"workspaces": [
"packages/**/*",
"client",
"web",
"api"
],
"homepage": "https://github.com/colinxr/pigment#readme",
"devDependencies": {
"@nuxt/kit": "^3.6.5",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"concurrently": "^8.2.0",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.12.0",
"eslint-plugin-workspaces": "^0.8.0",
"typescript": "^5.1.6",
"vue-eslint-parser": "^9.3.0"
},
"packageManager": "[email protected]"
}