-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "react-code-ui",
"version": "0.0.5",
"description": "A react code ui that has animated typing similar to Stripe.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"jsnext:main": "dist/index.esm.js",
"types": "dist/types.d.ts",
"typings": "dist/index.d.ts",
"repository": "https://github.com/bluematter/react-code-ui.git",
"author": "bluematter <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"dist"
],
"scripts": {
"test": "jest --env=jsdom",
"clean": "rimraf dist",
"build": "yarn clean && yarn rollup -c"
},
"dependencies": {
"react": "^17.0.2"
},
"devDependencies": {
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@rollup/plugin-replace": "^3.0.0",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.34",
"jest": "^27.3.1",
"rollup": "^2.59.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-import-css": "^3.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}