-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.48 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.48 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
{
"name": "xbetwin-client",
"version": "0.1.0",
"private": true,
"homepage": "https://asimashfaq.github.io/places-app.github.io",
"dependencies": {
"@types/jest": "^24.0.22",
"@types/node": "12.12.3",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.3",
"axios": "^0.19.0",
"cypress": "^3.6.1",
"express": "^4.17.1",
"gh-pages": "^2.1.1",
"google-map-react": "^1.1.5",
"image-webpack-loader": "^6.0.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jest": "^24.9.0",
"jest-enzyme": "^7.1.2",
"lodash": "^4.17.15",
"navi": "^0.13.6",
"nock": "^11.7.0",
"node-sass": "^4.13.0",
"postcss-import": "^12.0.1",
"query-string": "^6.8.3",
"react": "^16.11.0",
"react-dom": "^16.11.0",
"react-navi": "^0.13.6",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"redux-mock-store": "^1.5.3",
"redux-observable": "^1.2.0",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"rxjs": "^6.5.3",
"rxjs-compat": "^6.5.3",
"source-map-loader": "^0.2.4",
"tailwindcss": "^1.1.3",
"ts-jest": "^24.1.0",
"typescript": "3.6.4",
"wait-for-expect": "^3.0.1",
"webpack": "^4.41.2",
"webpack-bundle-analyzer": "^3.6.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.9.0"
},
"scripts": {
"build": "npm run clean-dist && webpack -p --config=configs/webpack/prod.js",
"clean-dist": "rimraf dist/*",
"lint": "tslint './src/**/*.ts*' --format stylish --project . --force",
"start": "npm run start-dev",
"start-dev": "webpack-dev-server --open --mode development --config=configs/webpack/dev.js",
"start-prod": " npm-run-all --parallel server build",
"server": "node express.js",
"test": "NODE_ENV=test && jest --coverage --watchAll --config=configs/jest.json",
"test:watch": "NODE_ENV=test && jest --watch --coverage --config=configs/jest.json",
"deploy": "gh-pages -d dist",
"cypress:open": "cypress open",
"cypress": "npm-run-all --parallel --silent 'cypress:open' 'start-dev' "
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@cypress/webpack-preprocessor": "^4.1.0",
"@types/axios": "^0.14.0",
"@types/enzyme-adapter-react-16": "^1.0.5",
"@types/google-map-react": "^1.1.3",
"@types/lodash": "^4.14.146",
"@types/query-string": "^6.3.0",
"@types/react-redux": "^7.1.5",
"@types/react-router-dom": "^5.1.1",
"@types/reactstrap": "^8.0.6",
"awesome-typescript-loader": "^5.2.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-imports": "^2.0.0",
"babel-preset-env": "^1.7.0",
"brotli-webpack-plugin": "^1.1.0",
"compression-webpack-plugin": "^3.0.0",
"cypress-wait-until": "^1.6.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"express-static-gzip": "^2.0.5",
"npm-run-all": "^4.1.5",
"react-hot-loader": "^4.12.16",
"regenerator-runtime": "^0.13.3",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-webpack-plugin": "^2.1.0",
"webpack-cli": "^3.3.10",
"webpack-dashboard": "^3.2.0",
"webpack-merge": "^4.2.2"
}
}