-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
55 lines (55 loc) · 1.57 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
{
"name": "monkeys",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"compressImages": "./compressImages.sh",
"prebuild": "npm run compressImages",
"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/monkeys.git"
},
"keywords": [],
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/skedwards88/monkeys/issues"
},
"homepage": "https://github.com/skedwards88/monkeys#readme",
"dependencies": {
"mobile-drag-drop": "^2.3.0-rc.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.2.0",
"eslint": "^7.32.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.3.2",
"jest": "^29.3.1",
"prettier": "^2.4.0",
"style-loader": "^3.2.1",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^22.0.0",
"webpack": "^5.91.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.2.0",
"workbox-webpack-plugin": "^6.3.0"
}
}