-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.32 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "isomorphic-react-starter",
"version": "1.0.0",
"description": "isomorphic web app boilerplate",
"main": "index.js",
"scripts": {
"build": "rm -rf dist && cross-env NODE_ENV=production webpack --progress -p",
"prestart": "npm run build",
"start": "babel-node index.js",
"watch": "cross-env NODE_ENV=development webpack --watch",
"dev": "opener http://localhost:3000 & npm run watch",
"lint": "eslint src/js/.",
"watch:test": "jest --watch",
"test": "jest",
"posttest": "npm run lint",
"coverage": "opener ./coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eden90267/isomorphic-react-starter.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/eden90267/isomorphic-react-starter/issues"
},
"homepage": "https://github.com/eden90267/isomorphic-react-starter#readme",
"devDependencies": {
"autoprefixer": "^8.6.1",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"deep-freeze": "0.0.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-15": "^1.0.5",
"enzyme-to-json": "^3.3.4",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.9.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^4.3.0",
"img-loader": "^3.0.0",
"jest-css-modules": "^1.1.0",
"node-sass": "^4.9.0",
"nodemon": "^1.17.5",
"nodemon-webpack-plugin": "^3.0.1",
"opener": "^1.4.3",
"postcss-loader": "^2.1.5",
"precss": "^3.1.2",
"raw-loader": "^0.5.1",
"react-test-renderer": "^15.6.2",
"sass-loader": "^7.0.1",
"style-loader": "^0.21.0",
"url-loader": "^1.0.1",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.2",
"webpack-livereload-plugin": "^1.2.0"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"body-parser": "^1.18.3",
"bootstrap": "^4.1.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"cross-env": "^5.1.6",
"dotenv": "^6.0.0",
"ejs": "^2.6.1",
"express": "^4.16.3",
"express-ejs-extend": "0.0.1",
"express-session": "^1.15.6",
"httpster": "^1.0.3",
"ignore-styles": "^5.0.1",
"isomorphic-fetch": "^2.2.1",
"jquery": "^3.3.1",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"popper.js": "^1.14.3",
"prop-types": "^15.6.1",
"react": "^15.6.2",
"react-dom": "^15.6.2",
"react-icons": "^2.2.7",
"react-redux": "^5.0.5",
"react-router-dom": "^4.3.1",
"redux": "^3.7.2",
"redux-thunk": "^2.3.0",
"serve-favicon": "^2.5.0",
"striptags": "^3.1.1",
"uuid": "^3.2.1"
},
"jest": {
"setupFiles": [
"./__tests__/global.js"
],
"modulePathIgnorePatterns": [
"global.js"
],
"moduleNameMapper": {
"\\.(scss)$": "<rootDir>/node_modules/jest-css-modules"
},
"verbose": true,
"collectCoverage": true,
"notify": true,
"collectCoverageFrom": [
"src/js/**"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}