This repository has been archived by the owner on May 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
81 lines (81 loc) · 2.27 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": "iceberg-bp",
"description": "Front-End Starter for your Web Projects with React, Webpack, Babel and SASS",
"version": "2.3.3",
"author": "Kevin Py",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:KevinPy/Iceberg.git"
},
"bugs": {
"url": "https://github.com/KevinPy/Iceberg/issues"
},
"dependencies": {
"node-sass": "^4.7.2",
"normalize.css": "^8.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-router-dom": "^4.1.1"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.0.0",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.4.1",
"css-loader": "^0.28.9",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.18.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-react": "^7.6.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.28.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.3.0",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "^16.2.0",
"resolve-url-loader": "^2.2.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.20.2",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.1"
},
"scripts": {
"build": "webpack -p",
"start": "webpack-dev-server",
"test": "jest --setupTestFrameworkScriptFile=raf/polyfill",
"test:ci": "jest --setupTestFrameworkScriptFile=raf/polyfill --ci"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"lcov"
],
"coveragePathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/app/js/fileTransform.js",
"\\.(css|scss)$": "identity-obj-proxy"
},
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
],
"testURL": "http://localhost:8080"
},
"engines": {
"node": ">=8",
"npm": ">=5"
}
}