-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.04 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
{
"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": "./node_modules/.bin/webpack --config webpack.config.js --env.TARGET_ENV=production",
"watch": "npm run build -- --watch",
"dev": "webpack-dev-server --config webpack.config.js --env.TARGET_ENV=development"
},
"author": "Alexander Grischuk",
"license": "MIT",
"dependencies": {
"react": "16.5.1",
"react-dom": "16.5.1",
"react-input-autosize": "2.2.1",
"react-select": "^1.0.0-rc.3",
"recompose": "0.30.0",
"styled-components": "3.4.6"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.0",
"codecov": "3.0.4",
"css-loader": "1.0.0",
"cypress": "3.1.0",
"enzyme": "3.6.0",
"enzyme-adapter-react-16": "1.5.0",
"eslint": "5.6.0",
"eslint-config-standard": "11.0.0",
"eslint-config-standard-jsx": "5.0.0",
"eslint-config-standard-react": "7.0.2",
"eslint-loader": "2.1.0",
"eslint-plugin-cypress": "2.0.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-promise": "4.0.1",
"eslint-plugin-react": "7.11.1",
"eslint-plugin-standard": "3.1.0",
"jest": "^23.6.0",
"react-test-renderer": "16.5.1",
"regenerator-runtime": "^0.12.1",
"style-loader": "0.23.0",
"webpack": "4.16.2",
"webpack-cli": "3.1.0",
"webpack-dev-server": "3.1.8"
}
}