-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 949 Bytes
/
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
{
"name": "fox-game-project",
"version": "1.0.0",
"description": "a digital pet game",
"main": "src/index.html",
"scripts": {
"build": "parcel build src/index.html",
"dev": "parcel src/index.html",
"start": "parcel src/index.html",
"format": "prettier --ignore-path ./.gitignore --write \"./**/*.{html,json,js,ts,css}\"",
"format:check": "prettier --ignore-path ./.gitignore --check \"./**/*.{html,json,js,ts,css}\"",
"lint": "eslint --ignore-path ./.gitignore --fix \"./**/*.{js,ts}\"",
"lint:check": "eslint --ignore-path ./.gitignore --quiet \"./**/*.{js,ts}\"",
"test": "jest"
},
"author": "Akanksha Gahalot",
"license": "MIT",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.3.0",
"parcel-bundler": "^1.12.4",
"prettier": "^2.0.4"
},
"browserslist": [
"last 2 Firefox versions"
]
}