-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.61 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
{
"name": "task4",
"version": "1.0.0",
"description": "App built as task 2 for the react mentoring program",
"main": "index.js",
"scripts": {
"build": "webpack --config ./webpack.config.js --mode production",
"wds": "webpack-dev-server",
"start:dev": "npm run wds -- --config ./webpack.config.dev.js --mode development",
"start": "simplehttpserver dist",
"test": "jest",
"test:coverage": "npm run test -- --coverage",
"test:e2e": "concurrently --kill-others \"npm run start:dev\" \"cypress open\"",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
},
"jest": {
"setupFiles": [
"./test/jestsetup.js"
],
"moduleNameMapper": {
"\\.(css|less|sass|scss)$": "<rootDir>/__mocks__/styleMock.js",
"\\.(gif|ttf|eot|svg)$": "<rootDir>/__mocks__/fileMock.js"
}
},
"keywords": [
"react",
"webpack",
"babel",
"jest",
"enzyme"
],
"repository": {
"type": "git",
"url": "https://github.com/uzairpm/react-mentoring"
},
"author": "Uzair Ahmed",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"bootstrap": "^4.1.0",
"classname": "0.0.0",
"compression-webpack-plugin": "^1.1.11",
"concurrently": "^3.5.1",
"coveralls": "^3.0.1",
"css-loader": "^0.28.11",
"cypress": "^2.1.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"fetch-mock": "^6.3.0",
"jest": "^22.4.3",
"react-test-renderer": "^16.3.2",
"redux-immutable-state-invariant": "^2.1.0",
"redux-mock-store": "^1.5.1",
"simplehttpserver": "^0.1.1",
"style-loader": "^0.21.0",
"webpack": "^4.5.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.14",
"webpack-dev-server": "^3.1.3"
},
"dependencies": {
"es6-promise": "^4.2.4",
"isomorphic-fetch": "^2.2.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-persist": "^5.9.1",
"redux-thunk": "^2.2.0"
}
}