-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.79 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
{
"name": "crossjig",
"version": "3.0.21",
"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/crossjig.git"
},
"keywords": [],
"author": "",
"license": "",
"bugs": {
"url": "https://github.com/skedwards88/crossjig/issues"
},
"homepage": "https://github.com/skedwards88/crossjig#readme",
"dependencies": {
"@skedwards88/word_lists": "latest",
"@skedwards88/word_logic": "4.0.1",
"lodash.clonedeep": "^4.5.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"seedrandom": "3.0.5"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.16.7",
"babel-jest": "^29.7.0",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^10.2.4",
"css-loader": "^6.6.0",
"eslint": "^8.11.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.6.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.7.0",
"jest-localstorage-mock": "^2.4.26",
"prettier": "^2.6.0",
"style-loader": "^3.3.1",
"stylelint": "^14.6.0",
"stylelint-config-standard": "^25.0.0",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"workbox-webpack-plugin": "^6.5.2"
}
}