-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
75 lines (75 loc) · 2.53 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
{
"name": "keg-tech-assessment",
"version": "0.0.1",
"description": "Developer Technical Assessment",
"repository": "https://github.com/simpleviewinc/keg-tech-assessment",
"author": "Lance Tipton",
"license": "MIT",
"scripts": {
"doc:build": "docker build --file ./container/Dockerfile --tag tech:assessment --force-rm .",
"doc:run": "docker run -it --rm --env-file ./container/.env -p 3000:3000 -p 5005:5005 tech:assessment",
"doc:test": "node scripts/docTest.js",
"api": "nodemon --watch ./server --watch ./configs --exec 'node ./server/index.js'",
"dev": "yarn start",
"format": "yarn pretty && yarn eslint",
"eslint": "eslint --config ./configs/eslintrc.config.js . --resolve-plugins-relative-to ./ --fix --quiet",
"pretty": "./node_modules/.bin/prettier --config ./configs/prettier.config.js --ignore-path .eslintignore --write '**/*.{js,jsx}'",
"start": "run-p web api",
"web": "webpack serve --config configs/webpack.js --progress --static src/"
},
"devDependencies": {
"@babel/core": "7.24.4",
"@babel/eslint-parser": "^7.24.1",
"@babel/plugin-syntax-dynamic-import": "7.8.3",
"@babel/plugin-transform-object-assign": "7.24.1",
"@babel/preset-env": "7.24.4",
"@keg-hub/args-parse": "6.2.1",
"@keg-hub/jsutils": "8.3.0",
"@keg-hub/spawn-cmd": "0.1.1",
"@popperjs/core": "^2.11.8",
"app-root-path": "3.0.0",
"axios": "^1.6.8",
"babel-jest": "26.6.3",
"babel-loader": "9.1.3",
"body-parser": "^1.20.2",
"bootstrap": "5.3.3",
"clean-webpack-plugin": "3.0.0",
"compression-webpack-plugin": "7.1.1",
"core-js": "3.8.1",
"css-loader": "5.0.1",
"cssnano": "^6.1.2",
"eslint": "^7.21.0",
"eslint-plugin-jest": "^24.1.9",
"express": "^4.19.2",
"file-loader": "6.2.0",
"html-loader": "1.3.2",
"html-webpack-plugin": "^5.6.0",
"jest": "26.6.3",
"mini-css-extract-plugin": "1.3.3",
"nodemon": "^3.1.0",
"npm-run-all": "4.1.5",
"postcss": "^8.4.38",
"postcss-loader": "8.1.1",
"postcss-preset-env": "^9.5.9",
"prettier": "^2.2.1",
"purgecss-webpack-plugin": "3.1.3",
"rimraf": "3.0.2",
"style-loader": "4.0.0",
"terser-webpack-plugin": "5.0.3",
"webpack": "^5.91.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "^5.0.4"
},
"browserslist": [
"> 1%",
"not ie <= 9",
"last 2 versions"
],
"dependencies": {
"@babel/plugin-transform-private-methods": "^7.24.1",
"autoprefixer": "10.4.5"
},
"resolutions": {
"autoprefixer": "10.4.5"
}
}