This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
93 lines (93 loc) · 2.74 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
90
91
92
93
{
"name": "dracula-ui",
"version": "1.0.6",
"description": "A dark-first collection of UI patterns and components.",
"homepage": "https://ui.draculatheme.com",
"repository": "dracula/dracula-ui",
"main": "index.js",
"style": "./styles/dracula-ui.css",
"typings": "index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch --noClean",
"build": "tsdx build && node ./scripts/css-to-js.js && cp package.json ./dist && cp README.md ./dist && cp -r dsp ./dist",
"dev": "yarn build && yarn docs && concurrently \"yarn start\" \"cd website && yarn && yarn dev\" ",
"test": "jest",
"docs": "yarn test -u && node ./dsp/update.js && cp -r dsp ./dist",
"lint": "echo Linting",
"release": "./scripts/release.sh",
"deploy": "./scripts/deploy.sh"
},
"peerDependencies": {
"react": ">=16"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"license": "MIT",
"author": "Netto Farah & Zeno Rocha",
"module": "dracula-ui.esm.js",
"devDependencies": {
"@babel/core": "^7.11.6",
"@types/classnames": "^2.2.10",
"@types/enzyme": "^3.10.6",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.161",
"@types/prettier": "^2.1.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-test-renderer": "^17.0.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.4.1",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.1.0",
"caniuse-lite": "^1.0.30001197",
"concurrently": "^6.0.0",
"cssnano": "^5.0.2",
"enzyme": "^3.11.0",
"enzyme-to-json": "^3.5.0",
"fs-extra": "^9.0.1",
"gh-pages": "^3.1.0",
"globby": "^11.0.1",
"husky": "^5.1.3",
"jest": "^26.4.2",
"jest-snapshot-serializer-raw": "^1.1.0",
"jest-transform-css": "^2.1.0",
"levenary": "^1.1.1",
"list-selectors": "^2.0.0",
"np": "^7.4.0",
"parse-data-url": "^3.0.0",
"postcss": "^8.2.8",
"postcss-each": "^1.0.0",
"postcss-import": "^14.0.0",
"postcss-prefixer": "^2.1.2",
"prettier": "^2.1.1",
"puppeteer": "^9.1.0",
"react": "^17.0.1",
"react-docgen-typescript-loader": "^3.7.2",
"react-dom": "^17.0.1",
"react-is": "^17.0.1",
"react-test-renderer": "^17.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.41.4",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-postcss": "^4.0.0",
"ts-jest": "^26.4.0",
"ts-loader": "^8.0.3",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"tsdx": "^0.14.1",
"tslib": "^2.0.1",
"typescript": "^4.0.2"
},
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.20",
"lodash-es": "^4.17.21"
}
}