This repository was archived by the owner on Jul 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.91 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.91 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "ClearCodeTask",
"version": "1.0.0",
"description": "Recrutment task for Clearcode, written in React & Redux",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "npm-run-all dev:build* && npm-run-all --parallel dev:watch* dev:server json:server",
"prod": "npm-run-all prod:build* && npm-run-all --parallel json:server prod:server",
"test": "jest --coverage --env=jsdom",
"test:watch": "yarn test -- --watch",
"json:server": "json-server --watch src/server/db.json --port 3300",
"dev:build-server": "webpack --config webpack.server.js",
"dev:watch-server": "webpack --config webpack.server.js --watch",
"dev:build-client": "webpack --config webpack.client.js",
"dev:watch-client": "webpack --config webpack.client.js --watch",
"dev:server": "nodemon --watch build --exec \"node server/bundle.js\"",
"prod:build-server": "node_modules/.bin/webpack --config webpack.server.js",
"prod:build-client": "node_modules/.bin/webpack --config webpack.client.js",
"prod:server": "node_modules/.bin/forever -c node server/bundle.js",
"rebuild:scss": "yarn rebuild node-sass --force",
"lint:css": "sass-lint -c ./.sass-lint.yml '**/*.scss' -v -q",
"lint:js": "yarn eslint -c .eslintrc.yml .",
"postinstall": "yarn prod"
},
"dependencies": {
"axios": "^0.18.0",
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-loader": "7.1.2",
"babel-plugin-react-html-attrs": "^2.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "1.6.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"body-parser": "^1.18.3",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^3.0.2",
"forever": "^0.15.3",
"json-server": "^0.13.0",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"node-sass": "^4.9.0",
"npm-run-all": "^4.1.3",
"prop-types": "^15.6.1",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.0.3",
"start-server-webpack-plugin": "^2.2.5",
"webpack": "^3.10.0",
"webpack-merge": "^4.1.2",
"webpack-node-externals": "^1.7.2"
},
"devDependencies": {
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.17.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-only-warn": "^1.0.1",
"eslint-plugin-react": "^7.9.1",
"jest": "^23.1.0",
"moxios": "^0.4.0",
"nodemon": "^1.17.1",
"redux-mock-store": "^1.5.1"
},
"jest": {
"setupTestFrameworkScriptFile": "./test-setup.js"
}
}