-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.29 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
78
79
80
81
82
83
{
"name": "redux-form-website-template",
"version": "1.0.21",
"description": "The template for the redux-form website",
"main": "./dist/bundle.js",
"module": "./es/index.js",
"modules.root": "./es",
"jsnext:main": "./es/index.js",
"repository": {
"type": "git",
"url": "https://github.com/erikras/redux-form"
},
"scripts": {
"build": "npm run clean && npm run build:lib && npm run build:es",
"build:lib": "cross-env NODE_ENV=production webpack src/index.js dist/bundle.js",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es --ignore __tests__",
"clean": "rimraf dist lib es",
"lint": "eslint src",
"prepublish": "npm run clean && npm run build"
},
"author": "Erik Rasmussen <[email protected]> (http://github.com/erikras)",
"license": "MIT",
"bugs": {
"url": "https://github.com/erikras/redux-form/issues"
},
"homepage": "https://redux-form.com",
"dependencies": {
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.3",
"js-cookie": "^2.2.0",
"marked": "^0.7.0",
"prop-types": "^15.6.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-form": "^8.2.1"
},
"devDependencies": {
"autoprefixer-loader": "^3.1.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"eslint": "^4.12.1",
"eslint-config-react-app": "^2.0.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.5.1",
"expect": "^21.2.1",
"express": "^4.16.2",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"mocha": "^4.0.1",
"node-sass": "^4.13.1",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"strip-loader": "^0.1.1",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^3.9.0"
},
"files": [
"es",
"dist"
],
"npmName": "redux-form-website-template",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js",
"*.css"
]
}
]
}