-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
89 lines (89 loc) · 2.82 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "luna",
"version": "0.0.1",
"description": "UI library",
"main": "index.js",
"bin": {
"luna": "./bin/luna.js"
},
"scripts": {
"ci": "luna install && npm run lint && npm test",
"test": "npm run build && luna test",
"lint": "eslint \"src/share/*.{ts,js}\" \"*.js\" \"bin/*.js\" \"lib/*.js\" && luna lint",
"build": "luna build",
"update": "luna update && lsla prettier \"*.json\" --write",
"format": "lsla prettier \"src/share/*.{ts,tsx,js,scss}\" \"*.{json,js}\" \"bin/*.js\" \".storybook/*.{js,css}\" \"lib/*.js\" --write && luna format",
"dev": "start-storybook -p 8080",
"dev:no-cache": "start-storybook -p 8080 --no-manager-cache",
"build:storybook": "build-storybook -o .storybook/out",
"genTheme": "lsla genTheme --input src/share/theme.json --output src/share/theme.scss && lsla prettier src/share/theme.scss --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liriliri/luna.git"
},
"keywords": [
"ui"
],
"author": "redhoodsu",
"license": "MIT",
"bugs": {
"url": "https://github.com/liriliri/luna/issues"
},
"homepage": "https://github.com/liriliri/luna#readme",
"dependencies": {
"licia": "^1.46.0"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-react": "^7.22.5",
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@storybook/addon-knobs": "^6.2.9",
"@storybook/addon-storysource": "^6.4.14",
"@storybook/addons": "^6.4.14",
"@storybook/html": "^6.4.14",
"@storybook/theming": "^6.4.14",
"@types/node": "^20.14.9",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"autoprefixer": "^9.7.4",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"commander": "^9.3.0",
"css-loader": "^3.4.2",
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.0.0",
"execa": "^4.0.0",
"karma": "^5.2.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jquery": "^0.2.4",
"karma-mocha": "^2.0.1",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^4.0.2",
"mini-css-extract-plugin": "^0.12.0",
"mocha": "^8.2.1",
"postcss": "^8.4.7",
"postcss-clean": "^1.1.0",
"postcss-loader": "^3.0.0",
"postcss-prefixer": "^2.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.80.4",
"sass-loader": "^10.2.0",
"shelljs": "^0.8.3",
"signal-exit": "^3.0.7",
"storybook-readme": "^5.0.9",
"style-loader": "^2.0.0",
"ts-loader": "^8.4.0",
"typedoc": "^0.26.3",
"typescript": "^4.8.3",
"vue": "^3.5.4",
"webpack": "^4.47.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^3.3.11"
}
}