forked from ispong/react-keycap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) 路 1.55 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) 路 1.55 KB
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
{
"name": "@ispong/react-keycap",
"version": "0.1.5",
"description": "React rapid development component library.",
"homepage": "https://github.com/ispong/react-keycap/wiki",
"private": false,
"license": "MIT",
"keywords": [
"react",
"component",
"typescripts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ispong/react-keycap.git"
},
"main": "lib/index.js",
"module": "es/index.js",
"typings": "es/index.d.ts",
"files": [
"es",
"lib"
],
"scripts": {
"build": "node ./scripts/build",
"test": "jest",
"tsc": "tsc",
"babel": "babel es -d lib",
"cpx": "cpx \"./components/**/*.scss\" ./es && cpx \"./components/**/*.scss\" ./lib",
"add-react": "npm link ../leo-day-react/node_modules/react",
"prettier": "prettier -c --write ."
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.9.0",
"classnames": "^2.2.6",
"@babel/runtime": "^7.11.2"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "^12.1.5",
"@types/classnames": "^2.2.10",
"@types/react": "^16.9.48",
"@types/react-dom": "^16.9.8",
"cpx": "^1.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.1.0",
"prettier": "^2.1.2",
"react-test-renderer": "^16.13.1",
"typescript": "^4.0.2"
}
}