-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.21 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
{
"name": "bible-previewer",
"version": "2.0.3",
"description": "Turns every bible verse into a link you can hover over to see the contents of the verse",
"main": "biblePreviewer.js",
"repository": {
"type": "git",
"url": "git+https://github.com/cguldner/BiblePreviewer.git"
},
"scripts": {
"build:prod": "webpack --env NODE_ENV=production",
"build:dev": "webpack",
"clean": "rm -rf dist *.zip",
"zip": "rm -rf *.zip && bash scripts/get_versions.sh && python scripts/create_zips.py",
"watch": "webpack --watch",
"cypress:gui": "cypress open",
"cypress:run": "cypress run --record false --browser chrome --headed",
"test": "npm run cypress:run",
"lint": "eslint . --max-warnings 0 --ignore-pattern dist && stylelint **/*.scss",
"lint:fix": "eslint . --fix --ignore-pattern dist"
},
"author": "Cody Guldner",
"license": "ISC",
"bugs": {
"url": "https://github.com/cguldner/BiblePreviewer/issues"
},
"homepage": "https://github.com/cguldner/BiblePreviewer#readme",
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"autoprefixer": "^10.4.16",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"cypress": "^13.7.0",
"cypress-intellij-reporter": "0.0.7",
"cypress-real-events": "^1.12.0",
"dotenv-webpack": "^8.0.1",
"eslint": "^9.15.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-regexp": "^2.7.0",
"eslint-plugin-sonarjs": "^2.0.4",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.12.0",
"husky": "^9.1.7",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.49",
"postcss-loader": "^7.3.3",
"sass-loader": "^16.0.3",
"start-server-and-test": "^2.0.3",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@materializecss/materialize": "^1.2.2",
"@popperjs/core": "^2.11.8",
"tippy.js": "^6.3.7"
}
}