-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.4 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
{
"name": "js13k2020",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:ByteDecoder/js13k2020.git",
"author": "Rodrigo Reyes <encode@bytedecoder.me>",
"license": "GPL-3.0",
"scripts": {
"check-file-size": "yarn node ./scripts/check-file-size.js",
"delete-dist": "yarn rimraf ./dist .cache/",
"create-dist": "yarn mkdirp ./dist/zipped",
"build-zipped": "yarn run build && yarn node ./scripts/zip-file.js",
"party": "yarn run delete-dist && yarn run create-dist && yarn run build-zipped && yarn run check-file-size",
"dev": "yarn parcel src/index.html",
"build": "parcel build src/index.html --no-source-maps --experimental-scope-hoisting --public-url ./",
"lint": "yarn lint:code",
"lint:code": "eslint --ext ts,tsx src",
"test": "jest --coverage"
},
"devDependencies": {
"@types/archiver": "^3.1.0",
"@types/node": "^14.6.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"archiver": "^5.0.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"parcel-bundler": "^1.12.4",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"sass": "^1.26.10",
"typescript": "^4.0.2"
},
"dependencies": {
"kontra": "^7.1.2"
}
}