-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.84 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
{
"name": "@fml/root",
"private": true,
"version": "0.0.0",
"description": "monorepo for fml",
"scripts": {
"clean": "rm -rf lib packages/*/lib packages/*/coverage packages/*/tsconfig.tsbuildinfo tsconfig.tsbuildinfo",
"start": "yarn start:react",
"start:react": "yarn watch & cd packages/react && yarn start",
"pretest": "yarn build",
"pretest:watch": "yarn build",
"test": "lerna exec --parallel -- yarn jest -c ../../jest.config.js --coverage --passWithNoTests",
"test:watch": "yarn watch & lerna exec --parallel -- yarn jest -c ../../jest.config.js --watch --coverage",
"prebuild": "yarn clean",
"build": "rollup -c & tsc -b",
"watch": "rollup -c -w & tsc -b -w",
"prepublish:all": "yarn build",
"publish:all": "lerna version patch --yes --force-publish=* && lerna publish from-package --force-publish=* --yes",
"prepare": "husky install"
},
"publishConfig": {
"access": "public"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/evanbb/fml.git"
},
"keywords": [],
"author": "Evan Bremer",
"license": "MIT",
"bugs": {
"url": "https://github.com/evanbb/fml/issues"
},
"homepage": "https://github.com/evanbb/fml#readme",
"dependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/jest": "^26.0.23",
"babel-jest": "^27.0.6",
"husky": "^7.0.0",
"jest": "^27.0.6",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"prettier": "^2.3.2",
"rollup": "^2.52.6",
"typescript": "^4.3.5"
},
"lint-staged": {
"packages/**/*.{tsx,ts,js}": [
"prettier --config .prettierrc --write"
]
}
}