-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.82 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
{
"name": "web-base",
"description": "",
"license": "UNLICENSED",
"author": "Dan Seethaler",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "webpack --mode production",
"precommit": "lint-staged",
"deploy": "npm run build && firebase deploy --only hosting",
"deploy:functions": "firebase deploy --only functions",
"format": "prettier-package-json --write ./package.json && prettier --config ./.prettierrc --write '{src,__{tests,mocks}__}/**/*.{js,jsx,css,json}'",
"start": "webpack-dev-server --host=0.0.0.0 --port=3000 --hot --mode development",
"test": "jest"
},
"dependencies": {
"@types/jest": "23.3.1",
"@types/lodash": "4.14.116",
"@types/react": "^16.9.2",
"@types/react-redux": "6.0.9",
"@types/react-router-dom": "4.3.0",
"babel-polyfill": "6.26.0",
"emotion": "9.2.6",
"immer": "1.5.0",
"moment": "2.22.2",
"react": "^16.9.0",
"react-dev-utils": "5.0.2",
"react-dom": "^16.9.0",
"react-emotion": "9.2.6",
"react-icons": "3.0.5",
"react-redux": "5.0.7",
"react-router-dom": "4.3.1",
"react-testing-library": "4.1.7",
"react-transition-group": "2.4.0",
"react-youtube": "^7.9.0",
"redux": "4.0.0",
"redux-thunk": "2.3.0",
"ts-loader": "4.5.0",
"tslint": "5.11.0",
"tslint-config-prettier": "1.15.0",
"typescript-babel-jest": "1.0.5"
},
"devDependencies": {
"babel-loader": "7.1.5",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-preset-env": "1.7.0",
"css-loader": "1.0.0",
"favicons-webpack-plugin": "0.0.9",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"husky": "0.14.3",
"jest": "23.4.2",
"lint-staged": "7.1.0",
"prettier": "1.14.1",
"prettier-package-json": "1.6.0",
"style-loader": "0.22.1",
"url-loader": "1.0.1",
"webpack": "4.16.5",
"webpack-cli": "3.1.0",
"webpack-dev-server": "3.1.5"
},
"keywords": [],
"jest": {
"transform": {
"^.+\\.(js|ts)x?$": "typescript-babel-jest"
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/src/test/"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|tsx?)$",
"testURL": "http://localhost/",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/__mocks__/styleMock.js"
}
},
"lint-staged": {
"package.json": [
"prettier-package-json --write",
"git add"
],
"{src,__{tests,mocks}__}/**/*.{json,css,md}": [
"prettier --write",
"git add"
],
"{src,__{tests,mocks}__}/**/*.{js,ts,tsx}": [
"prettier --write",
"tslint",
"git add"
]
}
}