-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.83 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
{
"name": "@quintype/build",
"version": "4.0.1",
"description": "Library that defines build process for node apps",
"main": "src/index.js",
"scripts": {
"docs": "rimraf docs && jsdoc -c jsdoc.json",
"lint:js:ci": "npx eslint $(git diff --diff-filter=ACM --pretty='' --name-only origin/master..HEAD -- '*.js') 'src/index.js'",
"sync-files-to": "npx onchange --verbose --wait --await-write-finish '**/*' -- ./bin-dev-scripts/sync-to.sh ",
"prepare": "husky install"
},
"keywords": [
"node",
"webpack",
"quintype"
],
"bin": {
"quintype-build": "./bin/quintype-build"
},
"author": "Quintype Developers <[email protected]>",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/register": "^7.16.0",
"@babel/runtime": "^7.16.3",
"@loadable/babel-plugin": "^5.13.2",
"@loadable/server": "^5.15.1",
"@loadable/webpack-plugin": "^5.15.1",
"autoprefixer": "^10.4.0",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-react-css-modules": "^5.2.6",
"babel-plugin-transform-assets-import-to-string": "^1.2.0",
"css-loader": "6.5.1",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"file-loader": "^6.2.0",
"generic-names": "^3.0.0",
"immer": "^9.0.7",
"lodash": "^4.17.21",
"lodash-webpack-plugin": "^0.11.6",
"mini-css-extract-plugin": "^2.4.5",
"node-sass": "^9.0.0",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"path": "^0.12.7",
"postcss": "^8.4.1",
"postcss-loader": "^6.2.0",
"precss": "^4.0.0",
"process": "^0.11.10",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"webpack": "^5.64.3",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-common-shake": "^2.1.0",
"webpack-dev-server": "^4.5.0",
"webpack-manifest-plugin": "^4.0.2",
"yargs": "^17.2.1"
},
"devDependencies": {
"better-docs": "^2.3.2",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-standard": "^4.1.0",
"gh-pages": "^3.2.3",
"husky": "^7.0.0",
"jsdoc": "^3.6.7",
"lint-staged": "^11.2.6",
"onchange": "^7.1.0",
"prettier": "2.4.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}