-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.63 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
{
"name": "recruitment-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=test karma start test/karma.config.js --single-run",
"testContinous": "karma start test/karma.config.js",
"startMocked": "webpack-dev-server --host 0.0.0.0 --config webpack.test.config",
"e2e": "nightwatch --config ./nightwatch.json",
"start": "webpack-dev-server --host 0.0.0.0",
"production": "webpack -p --progress --config ./webpack.prod.config.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/merixstudio/recruitment-app.git"
},
"author": "",
"license": "ISC",
"homepage": "https://bitbucket.org/merixstudio/recruitment-app#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-rewire": "^1.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chromedriver": "^2.31.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.4",
"enzyme": "^2.9.1",
"eslint": "3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-import": "2.6.1",
"eslint-plugin-jsx-a11y": "5.1.1",
"eslint-plugin-react": "7.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"fetch-mock": "^5.12.1",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"isomorphic-fetch": "^2.2.1",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine-core": "^2.7.0",
"jasmine-enzyme": "^3.6.1",
"karma": "^1.7.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.3",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"nightwatch": "^0.9.16",
"node-sass": "^4.5.3",
"react-test-renderer": "^15.6.1",
"rewire": "^2.5.2",
"sass-loader": "^6.0.6",
"selenium-server-standalone-jar": "^3.4.0",
"sinon": "^2.4.1",
"webpack": "^3.3.0",
"webpack-dashboard": "^0.4.0",
"webpack-dev-server": "^2.5.1"
},
"dependencies": {
"codemirror": "^5.27.4",
"enzyme-matchers": "^3.6.1",
"material-ui": "^0.18.6",
"mathsass": "^0.10.1",
"mobx": "^3.2.1",
"mobx-react": "^4.2.2",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-tap-event-plugin": "^2.0.1"
}
}