-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.31 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
{
"name": "pine-project",
"private": true,
"workspaces": [
"packages/*"
],
"version": "0.0.0",
"scripts": {
"foo": "echo foo",
"build": "yarn clean && yarn compile",
"compile": "tsc --build",
"postcompile": "yarn workspaces run rimraf src/**/*{.js,.d.ts}",
"clean": "yarn workspaces run rimraf -rf ./dist tsconfig.tsbuildinfo",
"pine:prod": "node ./packages/pine/dist/bin.js",
"pine:dev": "tsx ./packages/pine/src/bin.ts",
"format": "prettier --write 'packages/**/src/**/*.ts' packages/**/test/**/*.ts",
"lint": "eslint packages/**/src --ext .ts",
"test": "yarn pine:dev test",
"ci": "yarn lint && yarn pine:prod test",
"release": "yarn build && yarn changeset publish"
},
"author": "Fredrik Forsmo <fredrik.forsmo@gmail.com>",
"license": "MIT",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@types/jest": "^29.5.14",
"@types/node": "^18.13.0",
"@types/uuid": "^10.0.0",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"jest": "29.7.0",
"prettier": "^3.3.3",
"rimraf": "^4.4.1",
"ts-jest": "^29.2.5",
"tsx": "^3.14.0",
"typescript": "^4.9.5",
"uuid": "^10.0.0"
}
}