forked from MatrixRequirements/matrix-example
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 763 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 763 Bytes
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": "Generic-Dashboard",
"version": "1.0.0",
"description": "Generic dashboard",
"main": "index.js",
"scripts": {
"build": "tsc -b",
"watch": "tsc -b --watch",
"pretty": "prettier --write src/",
"clean": "rm -rf dist",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --ext .ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"expr-eval": "^2.0.2"
},
"devDependencies": {
"@types/jquery": "^3.5.5",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"prettier": "^2.2.1",
"typescript": "^4.1.5",
"@types/bootstrap": "3.3.32",
"@types/eonasdan-bootstrap-datetimepicker": "^4.17.27"
}
}