-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "toolkit",
"version": "1.0.1-alpha.3",
"description": "This repo establishes the Userfront toolkit, with the following features",
"lint-staged": {
"*.{js,jsx,css,md,ts,tsx}": "prettier --write"
},
"main": "index.js",
"directories": {
"doc": "docs",
"test": "test"
},
"workspaces": [
"package",
"site"
],
"scripts": {
"prepare": "husky install",
"lint": "prettier --check \"package/**/*.{jsx?,tsx?}\"",
"dev": "npm run build -w package && npm-run-all --parallel \"dev -w package\" \"dev -w site\"",
"build": "npm run build -ws",
"build:package": "npm run build -w package",
"test": "npm test -w package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/userfront/toolkit.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/userfront/toolkit/issues"
},
"homepage": "https://github.com/userfront/toolkit#readme",
"devDependencies": {
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1"
}
}