-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.89 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
84
85
86
87
{
"name": "seed-webapp",
"version": "0.1.0",
"description": "This is the seed repo for FrontEnd projects in The Greenhouse, based on React and Webpack.",
"scripts": {
"clean": "rimraf ./build && rimraf ./reports && mkdir ./reports && mkdir ./reports/test-results",
"build": "eslint *.js **/**/*.spec.jsx && webpack --config ./webpack.config.prod.js -p --progress --profile --bail",
"develop": "webpack-dev-server --open --config ./webpack.config.develop.js --inline --progress",
"serve": "webpack --config ./webpack.config.prod.js -p --progress --profile --bail && http-server ./build -o -P http://your-domain.com/api",
"test": "npm run clean && export TEST_REPORT_PATH=./reports/test-results && jest --coverage --config ./jest.config.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thegreenhouseio/react-webapp-seed.git"
},
"keywords": [
"React",
"Webpack",
"The Greenhouse"
],
"author": {
"name": "Owen Buckley",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/thegreenhouseio/react-webapp-seed/issues"
},
"homepage": "https://github.com/thegreenhouseio/react-webapp-seed#readme",
"dependencies": {
"@types/react-addons-test-utils": "^0.14.18",
"axios": "0.15.2",
"bootstrap": "4.0.0-alpha.4",
"react": "15.4.0",
"react-addons-test-utils": "^15.5.1",
"react-dom": "15.4.0",
"react-redux": "4.4.6",
"react-router": "3.0.2",
"redux": "3.6.0"
},
"devDependencies": {
"@types/axios": "0.9.33",
"@types/react": "0.14.49",
"@types/react-dom": "0.14.18",
"@types/react-redux": "4.4.32",
"@types/react-router": "3.0.5",
"@types/redux": "3.6.31",
"awesome-typescript-loader": "^3.1.3",
"axios-mock-adapter": "1.7.1",
"babel-jest": "19.0.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "6.23.0",
"codelyzer": "^3.0.1",
"css-loader": "^0.28.1",
"enzyme": "2.7.1",
"eslint": "3.18.0",
"eslint-plugin-react": "6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"favicons-webpack-plugin": "^0.0.7",
"file-loader": "0.9.0",
"html-loader": "0.4.4",
"html-webpack-plugin": "2.22.0",
"http-server": "0.9.0",
"jest": "19.0.2",
"jest-junit-reporter": "1.0.1",
"node-sass": "^4.5.3",
"pipeline-validate-js": "1.0.4",
"react-test-renderer": "^15.4.2",
"redux-mock-store": "^1.2.2",
"rimraf": "2.5.4",
"sass-lint": "^1.10.2",
"sass-loader": "^6.0.5",
"sasslint-webpack-plugin": "^1.0.4",
"source-map-loader": "0.1.5",
"style-loader": "^0.17.0",
"ts-jest": "19.0.0",
"ts-loader": "0.8.2",
"tslint": "^5.2.0",
"tslint-loader": "^3.5.3",
"typescript": "^2.3.2",
"url-loader": "0.5.7",
"webpack": "^3.7.1",
"webpack-dev-server": "^2.4.5",
"webpack-md5-hash": "0.0.5",
"webpack-merge": "0.14.1"
}
}