-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.03 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
{
"name": "dynamicforms",
"version": "0.1.0",
"private": true,
"author": "Harsha Attray",
"dependencies": {
"axios": "0.16.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"enzyme-adapter-react-16": "^1.5.0",
"lodash": "^4.17.4",
"react": "16.0.0",
"react-dom": "16.0.0",
"react-helmet": "5.2.0",
"react-redux": "5.0.6",
"react-redux-form": "^1.16.10",
"react-router-config": "1.0.0-beta.4",
"react-router-dom": "4.2.2",
"react-scripts": "1.1.4",
"react-test-renderer": "^16.5.1",
"redux": "3.7.2",
"redux-form": "^7.4.2",
"redux-thunk": "2.2.0",
"sane-email-validation": "^1.1.0",
"semantic-ui-css": "^2.3.3",
"semantic-ui-react": "^0.82.5"
},
"main": ".src/index.js",
"scripts": {
"clean": "rm -rf deploy",
"build": "npm run clean && webpack -p --env production",
"start": "webpack-dev-server --hot --inline --port 3000",
"commit_deploy": "git add deploy -A && git commit -m \"deploy files at `date`\" -n > /dev/null 2>&1; exit 0",
"ghpages": "git subtree split --prefix deploy/ -b gh-pages && git push -f origin gh-pages:gh-pages && git branch -D gh-pages",
"deploy": "npm run build && npm run commit_deploy && npm run ghpages",
"test": "react-scripts test --env=jsdom"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-0": "^7.0.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.0-beta.6",
"css-loader": "^1.0.0",
"enzyme": "^3.6.0",
"enzyme-to-json": "^3.3.4",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^2.24.1",
"jest": "^23.6.0",
"react-addons-test-utils": "^15.6.2",
"style-loader": "^0.13.2",
"url-loader": "^1.1.1",
"webpack": "3.5.6",
"webpack-dev-server": ">=3.1.11",
"react-dom": ">=16.0.1"
}
}