forked from axelspringerai/axelspringerai.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.96 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
{
"name": "react-boilerplate",
"version": "0.1.0",
"description": "Axel Springer AI.",
"homepage": "https://axelspringer.ai/",
"engines": {
"node": "12.3.x",
"npm": "6.9.x"
},
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "jest",
"test:watch": "cross-env NODE_ENV=test jest --watchAll",
"start": "webpack-dev-server",
"prod": "cross-env NODE_ENV=production webpack-dev-server --env.prod=true",
"postinstall": "npm run build",
"build": "cross-env NODE_ENV=production webpack --env.prod=true --mode=production",
"server": "node server"
},
"author": "Dat Tran",
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^7.1.1",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "3.1.4",
"css-loader": "^2.1.1",
"enzyme": "^2.9.1",
"file-loader": "3.0.1",
"jest": "^24.6.0",
"jest-enzyme": "^3.4.0",
"node-cache": "^4.1.1",
"node-sass": "^4.5.0",
"normalize.css": "^7.0.0",
"postcss-loader": "^2.0.6",
"react": "15.4.2",
"react-addons-test-utils": "^15.6.0",
"react-dom": "15.4.2",
"react-fontawesome": "^1.6.1",
"react-ga": "^2.6.0",
"react-icons": "^2.2.5",
"react-progressive-image": "^0.6.0",
"react-test-renderer": "^15.6.1",
"sass-loader": "^6.0.1",
"style-loader": "0.13.1",
"svg-react-loader": "^0.4.3",
"webpack": "4.29.6",
"webpack-cli": "^3.3.0",
"webpack-dev-server": "^3.2.1",
"whatwg-fetch": "^2.0.3"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/"
],
"collectCoverage": true,
"moduleNameMapper": {
".*\\.(css|scss|sass)$": "<rootDir>/internals/cssMock.js",
".*\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/internals/imageMock.js"
},
"moduleDirectories": [
"node_modules",
"src"
]
}
}