-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 971 Bytes
/
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
{
"name": "ns-stream",
"version": "1.0.0",
"repository": "[email protected]:nanite-systems/stream.git",
"author": "Microwavekonijn <[email protected]>",
"license": "Apache-2.0",
"packageManager": "^[email protected]",
"private": true,
"type": "commonjs",
"scripts": {
"changelog": "pnpm changeset version",
"lint": "prettier **/*.{ts,js,json}",
"prepare": "husky install"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@nx-tools/container-metadata": "5.0.2",
"@nx-tools/nx-container": "5.0.2",
"@nx/js": "^16.10.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"nodemon": "^3.0.3",
"nx": "^16.10.0",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
},
"lint-staged": {
"**/*.{ts,js,json}": [
"prettier --ignore-path ./.prettierignore --write"
]
}
}