-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 2.79 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
{
"name": "forecast",
"version": "1.7.1",
"description": "a weather forecast UI app",
"repository": "[email protected]:wingedearth/forecast.git",
"author": "Andrew A. Anissi <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"build": "node index.js",
"build:prod": "NODE_ENV=production node index.js",
"clean": "rimraf dist/*",
"coverage": "jest --coverage",
"dev": "nodemon ./dist/server/server.js",
"release": "standard-version",
"start": "node ./dist/server/server.js",
"test": "yarn jest"
},
"husky": {
"hooks": {
"pre-commit": "yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.12.13",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.13",
"@babel/preset-react": "^7.12.13",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"autoprefixer": "^10.2.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^7.12.1",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"file-loader": "^6.2.0",
"husky": "^4.3.8",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-environment-enzyme": "^7.1.2",
"jest-enzyme": "^7.1.2",
"mini-css-extract-plugin": "^1.3.5",
"nodemon": "^2.0.7",
"postcss": "^8.2.4",
"postcss-color-emoji": "^3.0.0",
"postcss-loader": "^5.0.0",
"postcss-nested": "^5.0.3",
"prettier": "^2.2.1",
"sass": "^1.32.6",
"sass-loader": "^11.0.0",
"standard-version": "^9.1.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.19.0",
"webpack-assets-manifest": "^5.0.1",
"webpack-cli": "^4.4.0",
"webpack-node-externals": "^2.5.2"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"axios": "^0.21.1",
"babel-loader": "^8.2.2",
"body-parser": "^1.19.0",
"colors": "^1.4.0",
"core-js": "^3.8.3",
"date-fns": "^2.17.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"prop-types": "^15.7.2",
"react": "16.14.0",
"react-dom": "16.14.0",
"rimraf": "^3.0.2",
"serialize-javascript": "^5.0.1",
"serve-favicon": "^2.5.0",
"zipcodes": "^8.0.0"
}
}