-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.11 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 3.11 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
{
"name": "react-app-starter",
"version": "1.0.0",
"description": "set up a react app from scratch without create-react-app boilerplate",
"main": "index.js",
"repository": "git@github.com:buihdk/react-app-starter.git",
"author": "contact@buihdk.com",
"license": "MIT",
"scripts": {
"analyze": "source-map-explorer dist/*.js",
"build": "webpack --config webpack.prod.js",
"build:dev": "webpack --config webpack.dev.js",
"clean": "rm -rf ./coverage ./dist",
"deploy": "gh-pages -d dist",
"lint": "./node_modules/.bin/eslint src/ --ext .js,.jsx --cache --fix",
"lint:prettier": "prettier --config .prettierrc --write ./src/**/**/**/*.{js,jsx,json,css}",
"serve": "serve -s -p ${WEB_APP_PORT:=8000} dist",
"start": "webpack-dev-server --config webpack.dev.js",
"test": "./node_modules/.bin/jest --config=./jest.config.js --env=./setupJestEnv.js --coverage --runInBand"
},
"dependencies": {
"axios": "^0.21.0",
"i18n-js": "^3.7.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.2.2",
"react-router-dom": "^6.12.0",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-block-scoping": "^7.7.4",
"@babel/plugin-transform-parameters": "^7.7.4",
"@babel/plugin-transform-react-jsx": "^7.7.4",
"@babel/plugin-transform-react-jsx-self": "^7.7.4",
"@babel/plugin-transform-react-jsx-source": "^7.7.4",
"@babel/plugin-transform-regenerator": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^6.0.3",
"css-loader": "^3.2.1",
"dotenv-webpack": "^2.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.3.0",
"eslint-plugin-sonarjs": "^0.5.0",
"gh-pages": "^3.0.0",
"husky": "^4.3.0",
"jest": "^24.9.0",
"jest-config": "^26.2.2",
"jest-environment-jsdom-fourteen": "^1.0.1",
"jest-fetch-mock": "^2.1.2",
"jest-localstorage-mock": "^2.4.2",
"jest-resolve": "^24.9.0",
"jest-watch-typeahead": "^0.4.2",
"prettier": "^1.19.1",
"prop-types": "^15.7.2",
"react-hot-loader": "^4.12.21",
"react-test-renderer": "^16.12.0",
"source-map-explorer": "^2.5.0",
"style-loader": "^1.0.1",
"terser-webpack-plugin": "^4.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
}
}