forked from Danziger/slotjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.32 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "slotjs",
"version": "1.0.0",
"description": "🎰 Circular slot machine mobile-first SPA built with JavaScript, CSS variables and Emojis!",
"homepage": "https://danziger.github.io/slotjs/",
"license": "MIT",
"author": {
"name": "Daniel Gámez Franco",
"email": "[email protected]",
"url": "http://gmzcodes.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Danziger/slotjs.git"
},
"bugs": {
"url": "https://github.com/Danziger/slotjs/issues"
},
"main": "./src/app/main.js",
"scripts": {
"start": "npm run start:dev",
"start:dev": "webpack-dev-server --mode development --hot --progress",
"start:prod": "webpack-dev-server --mode production --hot --progress",
"build": "npm run build:prod",
"build:dev": "webpack --mode development --progress",
"build:prod": "webpack --mode production --progress",
"distclean": "rm -rf dist",
"deploy": "npm run distclean && npm run build:prod && gh-pages -d dist",
"eslint": "eslint src",
"eslint:fix": "eslint --fix src",
"stylelint": "stylelint src/**/*.scss",
"stylelint:fix": "stylelint --fix src/**/*.scss",
"nuke": "rm -rf node_modules && rm package-lock.json",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"npm": ">=9.0.0",
"node": ">=18.0.0"
},
"dependencies": {
"core-js": "^3.32.0"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/eslint-parser": "^7.22.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.22.10",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-env": "^7.22.10",
"autoprefixer": "^10.4.15",
"babel-loader": "^9.1.3",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"ejs": "^3.1.8",
"ejs-compiled-loader": "^3.1.0",
"eslint": "^8.47.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.28.0",
"eslint-webpack-plugin": "^4.0.1",
"gh-pages": "^6.0.0",
"hasha": "^5.2.2",
"html-loader": "^4.2.0",
"html-webpack-plugin": "^5.5.3",
"mini-css-extract-plugin": "^2.7.6",
"postcss-loader": "^7.3.3",
"sass": "^1.65.1",
"sass-loader": "^13.3.2",
"stylelint": "^15.10.2",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.1.0",
"stylelint-webpack-plugin": "^4.1.1",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"workbox-webpack-plugin": "^7.0.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 0.5%",
"last 2 version",
"Firefox ESR",
"not dead",
"iOS >= 9"
]
}