-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 2.03 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
{
"name": "@domparty/fe",
"version": "0.0.75",
"description": "Our white-label front-end component library. Filled with functional components to help you kick-start your project 🚀",
"main": "components/index.js",
"scripts": {
"start": "start-storybook -p 9000 -s public",
"build-storybook": "build-storybook -s public -c .storybook -o .out",
"prepublish": "npm run build",
"build": "rm -rf ./dist && npm run build:components && npm run build:core && npm run build:preactcore",
"build:components": "microbundle ./src/library.ts -o ./components/index.js --name @domparty/fe --no-compress --jsx=React.createElement",
"build:core": "microbundle ./src/core/Core.tsx -o ./core/index.js --name Core --no-compress --jsx=React.createElement",
"build:preactcore": "microbundle ./src/core/CorePreact.tsx -o ./core/preact/index.js --no-compress --name CorePreact --jsx=h"
},
"repository": {
"type": "git",
"url": "git+https://github.com/domparty/component-library.git"
},
"author": "The Domparty team",
"license": "ISC",
"bugs": {
"url": "https://github.com/domparty/component-library/issues"
},
"homepage": "https://github.com/domparty/component-library#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^5.3.17",
"@types/react": "^16.9.26",
"@types/react-dom": "^16.9.5",
"babel-loader": "^8.1.0",
"babel-plugin-prismjs": "^2.0.1",
"copyclip": "0.0.2",
"fork-ts-checker-webpack-plugin": "^4.1.2",
"microbundle": "^0.12.0-next.8",
"prettier": "^2.0.2",
"prismjs": "^1.20.0",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3"
},
"dependencies": {
"@charlietango/use-native-lazy-loading": "^1.7.0",
"goober": "^1.7.1",
"preact": "^10.3.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-intersection-observer": "^8.26.1"
}
}