-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
86 lines (86 loc) · 2.95 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
{
"name": "github-dashboard",
"version": "1.3.0",
"description": "A GitHub Dashboard web app running on-top of Node",
"main": "src/index.tsx",
"repository": {
"type": "git",
"url": "git+https://github.com/thescientist13/github-dashboard.git"
},
"engines": {
"node": ">=4.4.1"
},
"keywords": [
"Node",
"Github",
"The Greenhouse"
],
"author": "Owen Buckley <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/thescientist13/github-dashboard/issues"
},
"homepage": "https://github.com/thescientist13/github-dashboard#readme",
"scripts": {
"clean": "rimraf ./dist && rimraf ./reports && mkdir ./reports && mkdir ./reports/test-results",
"build": "eslint *.js && yarn clean && webpack --config ./webpack.config.prod.js --progress --profile --bail",
"develop": "webpack-dev-server --open --config ./webpack.config.develop.js --inline --progress",
"serve": "yarn build && ws -d ./dist --spa index.html -z",
"setup": "rimraf ./src/services/credentials.ts && cp ./src/services/credentials.ts.tmpl ./src/services/credentials.ts",
"test": "yarn clean && eslint ./src/**/**/*.spec.tsx && export TEST_REPORT_PATH=./reports/test-results && jest --config jest.config.json --coverage"
},
"dependencies": {
"axios": "^0.18.0",
"bootstrap": "^3.3.7",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-redux": "^5.0.7",
"react-router": "^3.2.1",
"redux": "^4.0.0"
},
"devDependencies": {
"@types/enzyme": "^3.1.11",
"@types/react": "^16.4.6",
"@types/react-addons-test-utils": "^0.14.21",
"@types/react-dom": "^16.0.6",
"@types/react-redux": "^6.0.2",
"@types/react-router": "^3.0.5",
"@types/react-test-renderer": "^16.0.1",
"@types/redux": "^3.6.31",
"awesome-typescript-loader": "^5.0.0",
"axios-mock-adapter": "^1.15.0",
"babel-jest": "^19.0.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.23.0",
"css-loader": "^1.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^3.18.0",
"eslint-plugin-react": "^6.10.3",
"file-loader": "^1.1.11",
"html-critical-webpack-plugin": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.3.0",
"jest-junit-reporter": "^1.0.1",
"local-web-server": "^2.5.5",
"mini-css-extract-plugin": "^0.4.1",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.4.1",
"redux-mock-store": "^1.5.3",
"rimraf": "^2.6.2",
"source-map-loader": "^0.1.5",
"style-loader": "^0.21.0",
"ts-jest": "^19.0.0",
"tslint": "^5.10.0",
"tslint-loader": "^3.6.0",
"typescript": "^2.9.2",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.0.1",
"webpack": "^4.12.0",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^0.14.1"
}
}