-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.76 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
{
"name": "kodify-technical-test",
"version": "0.0.1",
"description": "We tried to keep the test/exercise as simple as we could trying to be able to determine whether we will work fine together or not.",
"scripts": {
"start": "concurrently --k \"npm run startserverwatch\" \"npm run startdevserver\"",
"startdevserver": "webpack-dev-server --progress --colors --content-base=web/",
"startserverwatch": "webpack --watch --config webpack.config.serverside.js",
"dist": "NODE_ENV=production webpack",
"test": "concurrently -p command -s all \"npm run test:jest\" \"npm run test:lint\"",
"test:jest": "jest",
"test:lint": "eslint . --ext .jsx --cache"
},
"homepage": "https://github.com/solilokiam/technicaltest#readme",
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"react": "^15.4.1",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.1",
"react-on-rails": "^4.0.3",
"react-redux": "^4.4.6",
"react-router": "^3.0.0",
"react-router-bootstrap": "^0.23.1",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"concurrently": "^3.1.0",
"enzyme": "^2.6.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"fetch-mock": "^5.5.0",
"jest": "^17.0.3",
"nock": "^9.0.2",
"react-addons-test-utils": "^15.4.1",
"redux-mock-store": "^1.2.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
}
}