-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.92 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.92 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "jamfire",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"husky"
]
},
"homepage": "https://github.com/jamfire/jamfire",
"repository": {
"type": "git",
"url": "https://github.com/jamfire/jamfire.git"
},
"bugs": {
"url": "https://github.com/jamfire/jamfire/issues"
},
"devDependencies": {
"@testing-library/cypress": "^8.0.0",
"@types/node": "^16.3.1",
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-eslint": "^10.1.0",
"commitizen": "^4.2.4",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.0.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-baseui": "^10.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"git-cz": "^4.8.0",
"husky": "^7.0.0",
"is-ci": "^3.0.0",
"lerna": "^4.0.0",
"lerna-changelog": "^2.2.0",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"start-server-and-test": "^1.12.6",
"typescript": "^4.3.5"
},
"scripts": {
"lint": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js",
"lint:fix": "yarn lint --fix",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,scss}\"",
"cy:open": "cypress open",
"cy:run": "cross-env CYPRESS_baseUrl=http://localhost:9000 cypress run",
"cy:conference": "start-server-and-test dev:conference http://localhost:8000 cy:conference:open",
"cy:conference:open": "yarn workspace gatsby-theme-jamfire-conference-e2e cy:open",
"ssat:dev:conference": "start-server-and-test dev:conference http://localhost:8000 cy:open",
"e2e:dev:conference": "concurrently --kill-others 'yarn tsc:compile:watch' 'yarn ssat:dev:conference'",
"clean:conference": "yarn workspace gatsby-starter-jamfire-conference clean",
"dev:conference": "yarn workspace gatsby-starter-jamfire-conference start",
"proxy:conference": "yarn workspace gatsby-starter-jamfire-conference proxy",
"start:conference": "concurrently --kill-others 'yarn proxy:conference' 'yarn dev:conference'",
"build:conference": "yarn workspace gatsby-starter-jamfire-conference build",
"serve:conference": "yarn workspace gatsby-starter-jamfire-conference serve",
"codegen:conference": "yarn workspace gatsby-theme-jamfire-conference codegen",
"build:datetimezone": "yarn workspace netlify-cms-widget-datetimezone build",
"start:datetimezone": "yarn workspace netlify-cms-widget-datetimezone start",
"prepare": "is-ci || husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}