This repository has been archived by the owner on Jun 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 4.46 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
{
"name": "webpack-react-framework",
"version": "1.0.0",
"description": "",
"scripts": {
"dll": "cross-env NODE_ENV=development webpack --config webpack/dll.config.js",
"analyze": "cross-env NODE_ENV=production webpack -p --config webpack/analyze.config.js",
"build": "cross-env NODE_ENV=production webpack -p --config webpack/prod.config.js",
"start": "npm run dll && cross-env NODE_ENV=development webpack-dev-server --config webpack/dev.config.js",
"deploy": "npm run build && firebase deploy",
"test:prod": "npm run build && firebase serve",
"lint": "jest --config test/jest.lint.js",
"prettier": "prettier \"**/*.+(js|scss|json)\"",
"format": "npm run prettier -- --write",
"flow": "flow",
"validate": "npm run test && npm run prettier -- --list-different && npm run flow && npm run build",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"stylelint-check": "stylelint-config-prettier-check",
"stylelint": "stylelint \"src/**/*.scss\"",
"setup": "npm install && npm run validate"
},
"author": "Luis C. Ruiz <[email protected]> (http://inglkruiz.github.io)",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@babel/runtime": "^7.3.1",
"@fortawesome/fontawesome-svg-core": "^1.2.12",
"@fortawesome/free-solid-svg-icons": "^5.6.3",
"@fortawesome/react-fontawesome": "^0.1.4",
"bootstrap": "^4.2.1",
"jquery": "^3.3.1",
"mobx": "^4.9.2",
"mobx-react": "^5.4.3",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-loadable": "^5.5.0",
"react-router-dom": "^4.3.1",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-react-constant-elements": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"autoprefixer": "^9.4.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-dynamic-import-node": "^2.2.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.23",
"clean-webpack-plugin": "^1.0.1",
"compression-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint": "^5.12.1",
"eslint-config-prettier": "^3.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-import-resolver-jest": "^2.1.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-flowtype": "^3.2.1",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"firebase-tools": "^6.3.0",
"flow-bin": "^0.91.0",
"html-loader": "^0.5.5",
"html-webpack-harddisk-plugin": "^1.0.1",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"identity-obj-proxy": "^3.0.0",
"is-ci-cli": "^1.1.1",
"jest": "^24.0.0",
"jest-runner-eslint": "^0.7.1",
"jest-watch-select-projects": "^0.1.1",
"jest-watch-typeahead": "^0.2.1",
"lint-staged": "^8.1.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.16.1",
"pug": "^2.0.3",
"pug-loader": "^2.4.0",
"react-hot-loader": "^4.6.3",
"react-testing-library": "^5.4.4",
"regenerator-runtime": "^0.13.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"stylelint": "^9.10.1",
"stylelint-config-css-modules": "^1.3.0",
"stylelint-config-prettier": "^4.0.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-prettier": "^1.0.6",
"stylelint-scss": "^3.5.1",
"stylelint-webpack-plugin": "^0.10.5",
"terser-webpack-plugin": "^1.2.1",
"webpack": "^4.29.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
}
}