-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "gameboycss",
"version": "1.0.0",
"description": "A Visual Nintendo GameBoy using HTML, CSS, Javascript & WebComponents",
"main": "src/index.html",
"scripts": {
"start": "parcel serve src/index.html",
"build": "parcel build src/index.html -d build --public-url /$npm_package_name/ && gh-pages -d build"
},
"keywords": [
"nintendo",
"gameboy",
"terminator 2",
"judgment day",
"games",
"retro",
"videogames",
"html",
"css",
"javascript",
"webcomponents",
"lit-element",
"howler"
],
"author": "ManzDev",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.12.16",
"@types/dat.gui": "^0.7.6",
"@types/howler": "^2.2.1",
"autoprefixer": "^10.2.4",
"babel-plugin-postcss-template-literals": "^1.0.0-alpha.2",
"cssnano": "^4.1.10",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"gh-pages": "^3.1.0",
"postcss-nesting": "^7.0.1",
"prettier": "^2.2.1",
"stylelint": "^13.10.0",
"stylelint-config-standard": "^20.0.0"
},
"dependencies": {
"dat.gui": "^0.7.7",
"howler": "^2.2.1",
"lit-element": "^2.4.0"
}
}