-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.73 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.73 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
{
"name": "c2-dialog",
"version": "2.3.3",
"description": "a react/redux dialog component",
"repository": {
"type": "git",
"url": "https://github.com/ClearC2/c2-dialog"
},
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"scripts": {
"start": "NODE_ENV=development webpack-dev-server --hot --env.mode development",
"build": "rimraf dist && yarn build:es && yarn build:cjs",
"build:es": "NODE_ENV=production babel src/ -d dist/es/",
"build:cjs": "NODE_ENV=production BABEL_MODULES=cjs babel src/ -d dist/cjs/",
"lint": "standard \"src/**/*.js\"",
"cm": "git-cz",
"semantic-release": "semantic-release"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branch": "master",
"extends": "c2-semantic-release"
},
"author": "David Adams",
"license": "ISC",
"standard": {
"parser": "babel-eslint",
"globals": [
"$",
"global"
]
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"c2-react-config": "ClearC2/c2-react-config",
"c2-semantic-release": "ClearC2/c2-semantic-release#semver:^1.0.0",
"immutable": "^3.8.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hot-loader": "^4.13.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-immutable": "^4.0.0",
"rimraf": "^2.6.3",
"standard": "^10.0.3"
},
"peerDependencies": {
"immutable": "^3.0.0",
"react": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-redux": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0"
},
"dependencies": {
"jquery": "^3.2.1",
"prop-types": "^15.0.0",
"react-portal": "^4.1.2",
"react-rnd": "^10.1.1"
}
}