-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.1 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.1 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
{
"name": "dynamicform-react-client",
"version": "1.7.5",
"description": "Form Render",
"main": "lib/index.js",
"scripts": {
"dev": "webpack-dev-server ",
"lint": "eslint src",
"build": "npm run build:lib",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack --config webpack.config.prod.babel.js --display-modules",
"build:umd:min": "webpack --config webpack.config.prod.babel.js",
"test": "mocha --compilers js:babel-core/register --require ignore-styles ./test/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/dynamicform/dynamicform-react-client"
},
"author": "Nick Gu",
"license": "MIT",
"dependencies": {
"antd": "^2.9.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"prop-types": "^15.5.10",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.4.1",
"babel-plugin-import": "^1.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.0",
"css-loader": "^0.28.1",
"enzyme": "^2.9.1",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"expect": "^1.20.2",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"history": "^4.6.1",
"html-webpack-plugin": "^2.28.0",
"ignore-styles": "^5.0.1",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"mocha": "^3.4.2",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-router-dom": "^4.0.0",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.6.0",
"redux-logger": "^3.0.1",
"redux-mock-store": "^1.2.3",
"redux-thunk": "^2.2.0",
"style-loader": "^0.17.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
}
}