-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.74 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
58
59
60
61
62
63
64
65
{
"name": "designspek",
"version": "0.5.0",
"description": "An opinionated reactive design system",
"author": "Barry Low <[email protected]>",
"license": "MIT",
"private": true,
"keywords": [
"svelte",
"designspek",
"css-in-js",
"turborepo"
],
"scripts": {
"components": "pnpm --filter designspek-components",
"build": "turbo run build",
"watch": "turbo run dev",
"clean": "turbo run clean",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"eslint": "turbo run eslint",
"eslint:fix": "turbo run eslint:fix",
"test": "turbo run test",
"commit": "git add . && git cz",
"release": "standard-version",
"release:min": "yarn release --release-as minor",
"prepare": "husky install"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"dependencies": {
"@babel/core": "^7.17.5",
"@changesets/cli": "^2.22.0",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-svelte3": "^3.4.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lerna": "^4.0.0",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.6.0",
"standard-version": "^9.3.2",
"svelte": "^3.46.4",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"turbo": "^1.2.1",
"typescript": "^4.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}