-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.33 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.33 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
{
"name": "@silverstripe/reactstrap-confirm",
"version": "0.0.5",
"description": "Confirmation dialogues with reactstrap modals",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src stories tests",
"lint-fix": "eslint --fix src stories tests",
"build": "yarn lint && yarn test && babel src --out-dir dist",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"keywords": [
"react",
"reactstrap",
"confirm"
],
"author": "Guy Marriott <guy@silverstripe.com>",
"license": "BSD-3-Clause",
"dependencies": {
"@babel/cli": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"bootstrap": "^4.3.1",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"reactstrap": "^8.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@silverstripe/eslint-config": "^0.0.5",
"@silverstripe/webpack-config": "^1.1.0",
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/addon-notes": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/react": "^5.0.11",
"babel-loader": "^8.0.6",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.13.2",
"jest": "^24.8.0"
},
"jest": {
"transform": {
".*": "babel-jest"
}
}
}