-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 950 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
30
31
32
33
34
{
"name": "ts-animalsimulator",
"version": "1.0.0",
"description": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf -rf dist",
"prestart": "npm run clean",
"start": "parcel serve src/index.html",
"watch": "parcel watch src/index.html",
"build": "parcel build src/index.html --public-url ./",
"predeploy": "npm run clean && npm run build",
"deploy": "gh-pages -d dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/immutable": "^3.8.7",
"@types/lodash": "^4.14.178",
"@types/lodash-es": "^4.17.5",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"gh-pages": "^3.2.3",
"parcel": "^2.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
},
"dependencies": {
"lodash-es": "^4.17.21"
}
}