forked from Danziger/slotjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.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
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
{
"name": "slotjs",
"version": "1.0.0",
"description": "🎰 Circular slot machine mobile-first SPA built with JavaScript, CSS variables and Emojis!",
"homepage": "https://github.com/Danziger/slotjs#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Danziger/slotjs.git"
},
"bugs": {
"url": "https://github.com/Danziger/slotjs/issues"
},
"author": {
"name": "Daniel Gámez Franco",
"email": "[email protected]",
"url": "http://gmzcodes.com"
},
"license": "MIT",
"main": "index.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",
"deploy": "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",
"clean": "npm run distclean && npm run nodeclean",
"distclean": "rm -rf dist",
"nodeclean": "rm -rf node_modules",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"core-js": "^3.23.5"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"ansi-regex": "^6.0.1",
"autoprefixer": "^10.4.7",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"css-minimizer-webpack-plugin": "^4.0.0",
"ejs": "^3.1.8",
"ejs-compiled-loader": "^3.1.0",
"eslint": "^8.20.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-webpack-plugin": "^3.2.0",
"gh-pages": "^4.0.0",
"html-loader": "^4.1.0",
"html-webpack-inline-source-plugin": "^1.0.0-beta.2",
"html-webpack-plugin": "^5.5.0",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^7.0.1",
"postcss-loader": "^7.0.1",
"sass-loader": "^13.0.2",
"stylelint": "^14.9.1",
"stylelint-config-standard-scss": "^5.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.3.0",
"stylelint-webpack-plugin": "^3.3.0",
"webpack": "^5.73.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 0.5%",
"last 2 version",
"Firefox ESR",
"not dead",
"iOS >= 9"
]
}