-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
77 lines (77 loc) · 2.58 KB
/
package.json
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
71
72
73
74
75
76
77
{
"name": "react-step-wizard",
"version": "5.3.11",
"description": "A modern flexible step wizard component built for React",
"main": "dist/react-step-wizard.min.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "export NODE_ENV=development; ./scripts/run.dev.js",
"dev": "rollup --config rollup.config.js --watch",
"build": "rollup --config rollup.config.js --environment NODE_ENV:production",
"app:dev": "webpack-dev-server --open --mode='development' --hotOnly --config app/webpack.config.js",
"app:build": "export NODE_ENV=production; webpack --progress --optimize-minimize --mode=production --config app/webpack.config.js",
"prepublishOnly": "rm -rf ./dist && npm run build",
"test": "jest --config=jest.config.json",
"lint": "eslint src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcmcneal/react-step-wizard.git"
},
"keywords": [
"react",
"step",
"multistep",
"wizard",
"es6"
],
"author": "Jason McNeal <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcmcneal/react-step-wizard/issues"
},
"homepage": "https://github.com/jcmcneal/react-step-wizard#readme",
"peerDependencies": {
"react": ">=15.0.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/preset-react": "^7.8.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"bootstrap": "^4.4.1",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-react": "^7.18.3",
"identity-obj-proxy": "^3.0.0",
"iso-morphic-style-loader": "^2.0.1",
"jest": "^25.1.0",
"less": "^3.13.1",
"less-loader": "^5.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.12.19",
"react-test-renderer": "^16.12.0",
"rollup": "^1.31.1",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-postcss": "^2.0.6",
"rollup-plugin-uglify": "^5.0.2",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^4.41.6",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.2"
}
}