-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.22 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.22 KB
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
{
"name": "my-app",
"version": "1.0.0",
"description": "",
"main": "dist/",
"scripts": {
"start": "webpack-dev-server --hot --history-api-fallback",
"build": "cross-env NODE_ENV=production webpack --progress",
"lint": "eslint --ext js,jsx src",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules --include-path ./node_modules/foundation-sites/scss src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules --include-path ./node_modules/foundation-sites/scss src/ -o src/ --watch --recursive",
"test": "jest src",
"test:update": "jest --updateSnapshot src",
"format": "prettier-eslint --write \"src/**/*.jsx\"",
"precommit": "lint-staged"
},
"author": "",
"license": "ISC",
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"npm run format",
"git add"
]
},
"jest": {
"roots": [
"<rootDir>/src/"
],
"setupFiles": [
"./src/setupTest.js"
],
"verbose": true,
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"globals": {
"NODE_ENV": "test"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "identity-obj-proxy",
"\\.(css|scss)$": "identity-obj-proxy"
},
"testPathIgnorePatterns": [
"/node_modules/"
],
"clearMocks": true,
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.42",
"@babel/plugin-proposal-class-properties": "^7.0.0-beta.42",
"@babel/preset-env": "^7.0.0-beta.42",
"@babel/preset-react": "^7.0.0-beta.42",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^8.2.2",
"babel-jest": "^23.0.0-alpha.1",
"babel-loader": "^8.0.0-beta.2",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.1.0",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.3",
"lint-staged": "^7.0.0",
"mini-css-extract-plugin": "^0.2.0",
"node-sass": "^4.8.3",
"node-sass-chokidar": "^1.2.0",
"prettier": "^1.11.1",
"prettier-eslint-cli": "^4.7.1",
"style-loader": "^0.20.3",
"url-loader": "^1.0.1",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {
"@babel/polyfill": "^7.0.0-beta.42",
"foundation-sites": "^6.4.4-rc1",
"google-map-react": "^1.0.3",
"lodash-es": "^4.17.10",
"material-ui": "^0.20.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.1",
"react-hot-loader": "^4.0.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.2.2",
"redux": "^4.0.0",
"redux-thunk": "^2.2.0",
"whatwg-fetch": "^2.0.3"
}
}