-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.38 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
{
"name": "mymovies",
"version": "1.0.0",
"author": "David Escalera",
"description": "Movie library application",
"main": "src/index.js",
"scripts": {
"commitmsg": "commitlint -E GIT_PARAMS",
"eslint": "./node_modules/eslint/bin/eslint.js . --ext .js",
"jsinspect": "jsinspect src e2e-features features config",
"test": "jest --verbose --config config/testing/setup-jest.json",
"test:coverage": "jest --verbose --coverage --config config/testing/setup-jest.json",
"test:features": "babel-node node_modules/cucumber/bin/cucumber-js --format node_modules/cucumber-pretty --no-strict",
"test:features:create-steps": "./scripts/step-definition-creator.sh",
"test:e2e-features": "nightwatch -c config/testing/nightwatch/chrome.conf.js",
"test:e2e-features:firefox": "nightwatch -c config/testing/nightwatch/firefox.conf.js",
"test:e2e-features:mobile": "nightwatch -c config/testing/nightwatch/mobile.conf.js",
"test:e2e-features:create-steps": "./scripts/step-definition-creator.sh --e2e",
"start": "webpack-dev-server --open --config ./config/webpack/config.development.js --env.TARGET_ENV=development",
"build:testing": "webpack --config ./config/webpack/config.testing.js --env.TARGET_ENV=testing",
"build": "webpack --config ./config/webpack/config.production.js --env.TARGET_ENV=production"
},
"devDependencies": {
"@commitlint/cli": "^7.2.0",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/travis-cli": "^7.0.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"chromedriver": "^2.46.0",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"cucumber": "^4.2.1",
"cucumber-pretty": "^1.4.2",
"cz-conventional-changelog": "^2.1.0",
"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.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"fetch-mock": "^6.3.0",
"file-loader": "^1.1.11",
"geckodriver": "^1.11.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"jsdom": "^11.11.0",
"jsinspect": "^0.12.7",
"mini-css-extract-plugin": "^0.4.0",
"mockery": "^2.1.0",
"nightwatch": "^0.9.21",
"nightwatch-cucumber": "^9.1.2",
"node-sass": "^4.9.0",
"optimize-css-assets-webpack-plugin": "^4.0.3",
"react-hot-loader": "^4.1.2",
"react-redux-test": "^1.11.0",
"require-hacker": "^3.0.1",
"sass-loader": "^7.0.1",
"selenium-server": "^3.14.0",
"style-loader": "^0.21.0",
"terser-webpack-plugin": "^1.2.3",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.1.0",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"webpack-merge": "^4.2.1"
},
"dependencies": {
"@material-ui/core": "^3.9.2",
"@material-ui/icons": "^3.0.2",
"material-ui-search-bar": "^1.0.0-beta.13",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-infinite-scroller": "^1.1.4",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}