-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "@cianciarusocataldo/demo-ui",
"version": "3.1.0",
"description": "A tiny UI library designed for build interactive demos for every react app",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"keywords": [
"demo",
"ui",
"responsive",
"react",
"ui-lib",
"styleguidist"
],
"typings": "dist/index.d.ts",
"author": "Cataldo Cianciaruso",
"license": "MIT",
"files": [
"dist",
"config/rollup.build.config.js"
],
"repository": "git://github.com/CianciarusoCataldo/demo-ui.git",
"devDependencies": {
"@types/classnames": "^2.2.11",
"@types/react": "^16.14.5",
"npm-run-all": "^4.1.5",
"rollup": "^2.44.0",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"typescript": "^4.2.3"
},
"peerDependencies": {
"classnames": "^2.2.6",
"html2canvas": "*",
"react": ">=16.x.0"
},
"scripts": {
"build": "rollup -c ./config/rollup.build.config.js",
"analyze": "rollup -c ./config/rollup.analyze.config.js",
"build-watch": "rollup -c ./config/rollup.dev.config.js -w",
"check-types": "tsc",
"start": "npm-run-all --parallel build-watch start-playground",
"init": "npm i && cd playground && npm i",
"start-playground": "cd playground && npm run start",
"build-playground": "cd playground && npm run build"
}
}