-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 4.05 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "rush-coding-test",
"version": "1.0.0",
"description": "The front-end coding test for Rush Partners job application.",
"main": "index.js",
"scripts": {
"test": "nyc --report lcovonly --extension .jsx --extension .js mocha --require @babel/register --require tools/test/setup.js ./src/**/*.spec.js",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov -t e4b0394d-4b6e-44f5-8807-1f2b2efbc678",
"test:watch": "mocha --require @babel/register --require tools/test/setup.js ./src/**/*.spec.js -- watch",
"lint": "eslint src/**/*.jsx src/**/*.js",
"lint:watch": "esw -w --changed src/**/*.jsx src/**/*.js",
"build": "npm run clean && npm run test && npm run report-coverage && webpack --config ./tools/webpack.production.config.js",
"build:dev": "npm run clean && webpack --config ./tools/webpack.dev.config.js",
"clean:all": "rm -rf node_modules ./dist ./.nyc_output ./coverage.lcov",
"clean": "rm -rf ./dist ./.nyc_output ./coverage.lcov",
"start:server": "node ./tools/server/",
"start": "npm run clean && npm run build && npm run start:server",
"dev": "concurrently \"npm run lint:watch\" \"npm run test:watch\" \"webpack-dev-server --hot --config ./tools/webpack.dev.config.js\""
},
"pre-commit": [
"lint",
"test",
"report-coverage"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tom-hill/tom-hill-coding-test.git"
},
"author": "Tom Hill <tp.hill.uk@gmail.com>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/tom-hill/tom-hill-coding-test/issues"
},
"homepage": "https://github.com/tom-hill/tom-hill-coding-test#readme",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"abort-controller": "^1.0.2",
"chai-enzyme": "^1.0.0-beta.1",
"crypto-js": "^3.1.9-1",
"express": "^4.16.3",
"process": "latest",
"prop-types": "^15.6.2",
"pusher": "^2.1.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-hot-loader": "^4.3.11",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"webpack-dev-server": "^3.1.9"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.1.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-react-jsx-source": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"concurrently": "^4.0.1",
"copy-webpack-plugin": "^4.5.3",
"css-loader": "^1.0.0",
"css-modules-require-hook": "^4.2.3",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"eslint-watch": "^4.0.2",
"fetch-mock": "^7.0.7",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^12.2.0",
"mocha": "^5.2.0",
"node-fetch": "^2.2.0",
"node-sass": "^4.9.3",
"nyc": "^13.0.1",
"path": "^0.12.7",
"pre-commit": "^1.2.2",
"pusher-js-mock": "^0.1.4",
"redux-immutable-state-invariant": "^2.1.0",
"redux-mock-store": "^1.5.3",
"redux-responsive": "^4.3.8",
"redux-thunk": "^2.3.0",
"sass-lint": "^1.12.1",
"sass-loader": "^7.1.0",
"sinon": "^6.3.5",
"style-loader": "^0.23.1",
"stylelint": "^9.6.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-webpack-plugin": "^0.10.5",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
}
}