forked from cagov/unemployment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 4.85 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "cagov-unemployment",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "npm-run-all \"build:css -- --env production\" build:js",
"prebuild": "npm run clean-build-dir",
"build:css": "postcss src/client/**/[!_]*.scss -d public/build/css --ext css",
"build:css:dev": "npm run build:css -- --env development",
"build:js": "NODE_ENV=production webpack --config webpack.config.js",
"clean-build-dir": "rm -fr public/build/",
"lint:css": "stylelint --allow-empty-input",
"lint:css:all": "npm run lint:css -- ./**/*.scss",
"lint:js": "eslint --ext .js",
"lint:js:all": "npm run lint:js -- ./",
"lint": "npm-run-all lint:js:all lint:css:all",
"prettier": "prettier --write src",
"start": "npm-run-all -p start:dev watch:css watch:js",
"prestart": "npm run clean-build-dir",
"start:dev": "PORT=3000 NODE_ENV=development nodemon --inspect=0.0.0.0:9222 src --config nodemon.config.json",
"start:prod": "INLINE_RUNTIME_CHUNK=false NODE_ENV=production node src",
"test": "jest --ci --coverage",
"test:update-snapshots": "jest -u",
"test:watch": "jest --watch",
"watch:css": "chokidar \"src/client/**/*.scss\" -c \"npm run build:css:dev\"",
"prewatch:css": "npm run build:css:dev",
"watch:js": "webpack --config webpack.dev.config.js"
},
"dependencies": {
"@azure/cosmos": "^3.9.2",
"@microsoft/applicationinsights-react-js": "^3.0.0",
"@microsoft/applicationinsights-web": "^2.5.5",
"axios": "^0.21.2",
"bootstrap": "^4.4.1",
"cookie-session": "^1.3.3",
"core-js": "^3.6.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-ipfilter": "^1.1.2",
"helmet": "^3.21.2",
"i18next-browser-languagedetector": "^4.1.1",
"i18next-http-backend": "^1.0.21",
"inputmask": "^5.0.3",
"lodash": "^4.17.21",
"luxon": "^1.24.1",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-bootstrap": "^1.0.1",
"react-dom": "^16.12.0",
"react-google-recaptcha": "^2.1.0",
"react-i18next": "^11.4.0",
"react-router-dom": "^5.1.2",
"regenerator-runtime": "^0.13.5",
"reselect": "^4.0.0",
"sha.js": "^2.4.11",
"smoothscroll-polyfill": "^0.4.4",
"uuid": "^8.1.0",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.9.6",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.7.4",
"@csstools/postcss-sass": "^4.0.0",
"assets-webpack-plugin": "^6.0.3",
"autoprefixer": "^9.7.3",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-imports": "^2.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"chokidar-cli": "^2.1.0",
"cssnano": "^4.1.10",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.6.0",
"eslint-config-nava": "^8.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.10.0",
"eslint-plugin-jsdoc": "^18.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^2.3.0",
"husky": "^3.1.0",
"i18next": "^19.8.3",
"i18next-hmr": "^1.6.2",
"jest": "^26.0.1",
"jest-junit": "^9.0.0",
"lint-staged": "^9.4.3",
"nodemon": "^2.0.1",
"postcss-cli": "^8.2.0",
"postcss-hash": "^1.0.2",
"postcss-scss": "^2.0.0",
"prettier": "2.0.4",
"stylelint": "^13.7.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-junit-formatter": "^0.2.2",
"supertest": "^4.0.2",
"terser-webpack-plugin": "^4.2.3",
"typescript": "^3.8.3",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^4.1.0",
"webpack-dev-middleware": "^4.0.0",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "5.3.0",
"webpackbar": "^5.0.0-3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix",
"stylelint --fix",
"git add"
]
},
"engines": {
"node": ">=12.11.0"
}
}