-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.08 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
{
"name": "react-grid-resizable",
"version": "1.0.0",
"description": "React Grid Resizable Component",
"main": "lib/index.js",
"scripts": {
"test": "jest src --watch",
"build": "tsc",
"start": "parcel example/index.html",
"build-example": "parcel build example/index.html",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/netcell/react-grid-resizable.git"
},
"author": "netcell",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.123",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.2",
"jest": "^24.5.0",
"nice-color-palettes": "^2.0.0",
"parcel-bundler": "^1.12.2",
"react-dom": "^16.8.4",
"react-testing-library": "^6.0.1",
"ts-jest": "^24.0.0",
"typescript": "^3.3.3333"
},
"dependencies": {
"@types/styled-components": "~4.0.3",
"classnames": "^2.2.6",
"react": "^16.8.4",
"styled-components": "~4.0.3"
},
"peerDependencies": {
"react": "^16.8.0"
}
}