-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.74 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.74 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
61
62
63
64
{
"version": "1.0.0",
"name": "@ratsel/ui",
"description": "🧩 Rätsel — flexible styled component library for React",
"author": "Andrey Kondalov <andrey@kondalov.com>",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": "https://github.com/lskjs/ratsel",
"keywords": [
"lskjs",
"ratsel",
"ui-library",
"styled",
"css-in-js"
],
"scripts": {
"start": "lsk run start",
"bootstrap": "lsk run bootstrap",
"dev": "lsk run dev",
"release": "lsk run release",
"release:yes": "lsk run release -- --yes",
"build": "lsk run build",
"test": "lsk run test",
"test:watch": "lsk run test -- --watch",
"lint": "eslint packages/*/src --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint packages/*/src --ext .ts,.tsx,.js,.jsx --fix",
"cosmos": "cosmos",
"cosmos:export": "cosmos-export && sh scripts/postexport.sh"
},
"dependencies": {
"@babel/cli": "7.22.9",
"@babel/core": "7.22.9",
"@lskjs/babel-preset": "3.8.1",
"@lskjs/cli": "2.52.0",
"babel-jest": "29.6.2",
"babel-loader": "9.1.3",
"lerna": "7.1.4",
"typescript": "5.1.6"
},
"devDependencies": {
"@commitlint/config-conventional": "17.6.7",
"@emotion/babel-plugin": "^11.11.0",
"@lskjs/eslint-config": "3.10.0",
"@lskjs/utils": "3.8.1",
"@types/jest": "29.5.3",
"babel-eslint": "10.1.0",
"eslint": "8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^5.0.0",
"html-webpack-plugin": "^5.5.3",
"husky": "8.0.3",
"jest": "29.6.2",
"prettier": "3.0.0",
"react-cosmos": "^5.7.2"
},
"overrides": {
"@lskjs/babel-preset": {
"@babel/core": "7.22.9"
}
}
}