-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "logic-grid",
"version": "1.0.42",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"dev": "webpack-dev-server --mode development",
"start": "webpack-dev-server",
"eslint": "npx eslint --ignore-path .gitignore . --fix",
"prettier": "npx prettier --write .",
"style": "npx stylelint '**/*.css' --fix",
"lint": "npm run eslint && npm run prettier && npm run style"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skedwards88/logic-grid.git"
},
"keywords": [],
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/skedwards88/logic-grid/issues"
},
"homepage": "https://github.com/skedwards88/logic-grid#readme",
"dependencies": {
"lodash.clonedeep": "^4.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.3",
"eslint": "^8.44.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.1",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"style-loader": "^3.3.2",
"stylelint": "^15.9.0",
"stylelint-config-standard": "^33.0.0",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3",
"workbox-webpack-plugin": "^7.0.0"
}
}