-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.27 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.27 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
{
"name": "running-pips",
"version": "1.0.0",
"description": "",
"main": "src/server/index",
"scripts": {
"dev": "nodemon src/server/index",
"start": "node src/server/index",
"build": "webpack-cli --config webpack.config.js",
"analize": "webpack --config webpack.config.js --json > stats.json && webpack-bundle-analyzer stats.json",
"lint-fix": "standard --fix",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.14.2",
"@babel/plugin-transform-runtime": "^7.14.2",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.14.2",
"@babel/preset-react": "^7.13.13",
"@babel/register": "^7.13.16",
"@babel/runtime": "^7.14.0",
"@google-pay/button-react": "^3.0.5",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.3",
"asset-require-hook": "^1.2.0",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"compression-webpack-plugin": "^7.1.2",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"css-loader": "^5.2.6",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"ignore-styles": "^5.0.1",
"mini-css-extract-plugin": "^1.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-hot-loader": "^4.13.0",
"react-paypal-button-v2": "^2.6.3",
"react-redux": "^7.2.3",
"react-router-config": "^5.1.1",
"react-router-dom": "^5.2.0",
"reaptcha": "^1.7.2",
"redux-thunk": "^2.3.0",
"sass": "^1.66.1",
"sass-loader": "^12.1.0",
"shortid": "^2.2.16",
"webpack-cli": "^4.6.0",
"webpack-manifest-plugin": "^3.1.1",
"yappy-node-back-sdk": "file:yappy.tar"
},
"devDependencies": {
"babel-jest": "^27.0.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"figlet": "^1.5.0",
"jest": "^27.0.6",
"jest-svg-transformer": "^1.0.0",
"nodemon": "^2.0.20",
"standard": "^16.0.3",
"url-loader": "^4.1.1",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-dev-middleware": "^4.1.0",
"webpack-hot-middleware": "^2.25.0"
},
"eslintConfig": {
"extends": [
"./node_modules/standard/eslintrc.json"
]
}
}