forked from vatz88/FFCSonTheGo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.14 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
{
"name": "FFCSonTheGo",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/vatz88/FFCSonTheGo.git",
"author": "Vatsal Joshi <vatz88@gmail.com>",
"license": "GPL-3.0",
"private": false,
"scripts": {
"start": "yarn convert && parcel src/index.html",
"start:noconvert": "parcel src/index.html",
"build": "yarn convert && parcel build src/index.html",
"convert": "node util/convert_to_json.js && node util/json_to_data_dir.js && rm util/output.json && rm util/output_chennai.json"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"devDependencies": {
"husky": "^2.4.1",
"parcel-bundler": "^1.12.3",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"sass": "^1.21.0",
"xlsx": "^0.14.3"
},
"dependencies": {
"@sentry/browser": "^5.4.3",
"bootstrap": "3.4.1",
"bootstrap-multiselect": "^0.9.13-1",
"easy-autocomplete": "1.3.5",
"html2canvas": "^1.0.0-rc.3",
"jquery": "3.4.0",
"localforage": "^1.7.3"
}
}