-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.77 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.77 KB
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
{
"name": "@jlbelanger/wardrobe",
"version": "1.0.0",
"description": "Re-creation of Cher's Wardrobe from the 1995 movie Clueless.",
"license": "GPL-3.0-only",
"type": "module",
"author": {
"name": "Jenny Belanger",
"email": "mail@jennybelanger.com",
"url": "https://www.jennybelanger.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/jlbelanger/wardrobe.git"
},
"scripts": {
"build": "npx webpack --mode=production",
"lint": "npm run lint:css && npm run lint:js && npm run lint:prettier",
"lint:css": "npx stylelint 'resources/css/**/*.css'",
"lint:js": "npx eslint .",
"lint:php": "./vendor/bin/phpcs",
"lint:prettier": "npx prettier . --check",
"test:cypress": "npx cypress open",
"test:php": "./vendor/bin/phpunit",
"start": "npx update-browserslist-db && npx webpack --watch"
},
"dependencies": {
"normalize.css": "^8.0.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@csstools/postcss-global-data": "^3.1.0",
"@eslint/js": "^9.39.2",
"@stylistic/eslint-plugin": "^5.6.1",
"@stylistic/stylelint-plugin": "^4.0.0",
"babel-loader": "^10.0.0",
"browser-sync": "^3.0.4",
"browser-sync-webpack-plugin": "^2.4.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.4",
"cypress": "^15.8.1",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.5.0",
"mini-css-extract-plugin": "^2.9.4",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"postcss-preset-env": "^10.5.0",
"prettier": "^3.7.4",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^39.0.1",
"stylelint-order": "^7.0.0",
"terser-webpack-plugin": "^5.3.16",
"webpack": "^5.104.1",
"webpack-cli": "^6.0.1",
"webpack-manifest-plugin": "^6.0.1"
},
"browserslist": [
"defaults",
"iOS >= 12"
]
}