-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
55
56
57
{
"private": true,
"name": "@noom/symbolism",
"version": "0.0.1",
"description": "Coverage assertions for specific code tokens.",
"scripts": {
"format": "prettier -w src",
"test": "jest",
"lint": "yarn run lint:eslint && tsc",
"lint:eslint": "eslint --cache --cache-location node_modules/.cache/eslint --ext .mjs,.js,.ts,.jsx,.tsx .",
"postinstall": "preconstruct dev",
"clean": "rm -rf packages/*/dist",
"build": "./scripts/build.sh",
"watch": "./scripts/build.sh watch",
"yalc:push": "for x in packages/*; do pushd -q $x; yalc push; popd -q; done",
"changeset": "changeset",
"version-packages": "yarn test & yarn lint && changeset version",
"release": "yarn build && changeset publish"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@changesets/cli": "^2.24.1",
"@emotion/styled": "^11.9.3",
"@preconstruct/cli": "^2.2.1",
"@types/glob": "^7.2.0",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.0",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"i18next": "^21.9.0",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"ts-node": "^10.8.2",
"type-fest": "^2.16.0",
"typescript": "^4.7.4"
},
"workspaces": [
"packages/*"
],
"preconstruct": {
"packages": [
"packages/*"
]
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/noom/symbolism.git"
}
}