-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.97 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.97 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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "react-dynamic-layout",
"version": "0.0.0-development",
"main": "dist/index.js",
"description": "React Dynamic Layout is a dock layout system inspired by Golden Layout, made with react.js",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^8.0.4",
"@types/jest": "^24.0.15",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^6.0.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"jest": "^24.8.0",
"jest-dom": "^3.5.0",
"parcel-bundler": "^1.12.3",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.5.4",
"sass": "^1.22.1",
"semantic-release": "^15.13.18"
},
"peerDependencies": {
"react": ">= 16.8 < 17",
"prop-types": "*"
},
"types": "index.d.ts",
"files": [
"dist",
"README.md",
"index.d.ts"
],
"dependencies": {
"classnames": "^2.2.6",
"create-react-class": "^15.6.3",
"react-is": "^16.8.6"
},
"scripts": {
"commit": "git-cz",
"start": "parcel examples/index.html",
"prebuild": "rimraf dist && rimraf .cache && npm run test",
"build": "npm run build:js && npm run build:css",
"build:js": "babel src/ --out-dir dist",
"build:css": "parcel build src/style/**/index.scss --out-dir dist/style --no-source-maps",
"test": "jest",
"pretest": "npm run lint",
"lint": "eslint .",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/albizures/react-dynamic-layout.git"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}