-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 933 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
35
36
37
{
"name": "colony-counter",
"version": "0.1.0",
"description": "count colonies on agar plates",
"source": "src/index.html",
"scripts": {
"start": "parcel",
"build": "parcel build --public-url ./",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"watch": "parcel src/index.html"
},
"keywords": [
"colony",
"agar"
],
"author": "Ian Hunt-Isaak",
"license": "BSD-3",
"devDependencies": {
"@types/fabric": "^4.5.6",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"buffer": "^5.5.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.2.1",
"parcel": "^2.2.1",
"prettier": "2.5.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
},
"dependencies": {
"fabric": "^5.0.0"
}
}