This repository has been archived by the owner on Feb 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.54 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
{
"name": "lmth",
"version": "1.0.0",
"description": "Say good-bye to HTML, a document markup which is not for applications.",
"author": "Naoki Ikeguchi <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/siketyan/lmth",
"repository": {
"type": "git",
"url": "git+https://github.com/siketyan/lmth.git"
},
"bugs": {
"url": "https://github.com/siketyan/lmth/issues"
},
"source": "./src/index.ts",
"main": "./dist/index.js",
"module": "./dist/module.js",
"types": "./dist/types.d.ts",
"style": "./src/styles/global.scss",
"scripts": {
"watch": "parcel watch",
"build": "parcel build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@types/react": "^17.0.37",
"destyle.css": "^3.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@parcel/core": "^2.0.1",
"@parcel/packager-ts": "^2.0.1",
"@parcel/transformer-sass": "^2.0.1",
"@parcel/transformer-typescript-types": "^2.0.1",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-essentials": "^6.4.9",
"@storybook/addon-links": "^6.4.9",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.4.9",
"acorn": "^8.5.0",
"babel-loader": "^8.2.3",
"css-loader": "^5.2.7",
"parcel": "^2.0.1",
"sass": "^1.45.1",
"sass-loader": "^10.2.0",
"style-loader": "^2.0.0",
"typescript": "^4.5.4",
"webpack": "^4.46.0"
}
}