-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.94 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
{
"name": "swimming-ukraine-league",
"version": "1.0.0",
"description": "Swimming Ukraine League",
"repository": "https://github.com/Raccoona-Crypto",
"scripts": {
"install": "npm run build-all",
"preserve": "npm run build-all",
"serve": "firebase serve",
"predeploy": "npm run build-all",
"deploy": "firebase deploy",
"build-all": "npm run build-functions",
"build-functions": "cd functions && npm run build",
"watch": "cross-env NODE_ENV=development webpack --config ./webpack.config.js --mode=development --watch --progress --hide-modules",
"production": "cross-env NODE_ENV=production webpack --config ./webpack.config.js --mode=production -p --progress --hide-modules"
},
"dependencies": {
"axios": "^0.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"classnames": "^2.2.6",
"firebase": "5.8.2",
"history": "^4.7.2",
"lodash": "4.17.4",
"mobx": "5.9.0",
"mobx-react": "5.4.3",
"moment": "2.24.0",
"react": "16.8.3",
"react-dom": "16.8.3",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-table": "^6.9.2"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.3.0",
"@types/react-router": "^4.4.4",
"@types/react-router-dom": "^4.3.1",
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.1.1",
"css-loader": "^2.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"node-sass": "^4.7.2",
"postcss-loader": "^3.0.0",
"sass-loader": "^6.0.6",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3"
},
"babel": {
"presets": [
"react",
"stage-0"
]
}
}