-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.83 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
{
"name": "alexander-quandoo-candidate-task",
"version": "1.0.0",
"description": "Quandoo candidate task",
"engines": {
"npm": ">=3",
"node": ">=5"
},
"main": "index.js",
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"<rootDir>/__tests__/__mocks__/"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"json"
]
},
"scripts": {
"test": "node_modules/.bin/jest && codecov",
"lint": "eslint src/**/*.js webpack.config.js",
"build": "webpack",
"watch": "npm run build -- --watch",
"dev": "webpack-dev-server"
},
"author": "Alexander Grischuk",
"license": "MIT",
"dependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-input-autosize": "2.2.1",
"react-select": "^1.0.0-rc.3",
"recompose": "^0.26.0",
"styled-components": "^3.0.1"
},
"devDependencies": {
"babel": "6.23.0",
"babel-core": "6.26.0",
"babel-jest": "22.1.0",
"babel-loader": "7.1.2",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "6.24.1",
"codecov": "3.0.0",
"css-loader": "0.28.9",
"cypress": "1.4.1",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"eslint": "4.16.0",
"eslint-config-standard": "10.2.1",
"eslint-config-standard-jsx": "4.0.2",
"eslint-config-standard-react": "5.0.0",
"eslint-loader": "1.9.0",
"eslint-plugin-cypress": "2.0.1",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-node": "5.2.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-react": "7.6.1",
"eslint-plugin-standard": "3.0.1",
"jest": "22.1.4",
"react-test-renderer": "16.2.0",
"style-loader": "0.19.1",
"webpack": "3.10.0",
"webpack-dev-server": "2.11.1"
}
}