-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.43 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
{
"name": "codey-in-tundra-ts",
"version": "1.0.0",
"scripts": {
"start": "parcel src/index.html -p 8000",
"build": "parcel build src/index.html --out-dir dist",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"format": "prettier --write ./src"
},
"author": "@rokonxr",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rokonxr/codey-in-tundra-ts.git"
},
"homepage": "https://github.com/rokonxr/codey-in-tundra-ts",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"minimist": ">=1.2.2",
"parcel": "1.12.3",
"parcel-plugin-clean-easy": "^1.0.2",
"parcel-plugin-static-files-copy": "^2.4.3",
"prettier": "^2.7.1",
"typescript": "^3.8.3"
},
"dependencies": {
"phaser": "^3.24.1"
},
"parcelCleanPaths": [
"dist"
],
"staticFiles": {
"staticPath": "static",
"watcherGlob": "**"
},
"prettier": {
"tabWidth": 3,
"arrowParens": "avoid",
"singleQuote": true,
"endOfLine": "lf"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}