This repository has been archived by the owner on Jul 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.65 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "annolist",
"version": "0.0.1-dev",
"description": "Annotations List",
"scripts": {
"build": "webpack --config webpack.config.prod.js",
"dev": "webpack --mode development",
"watch": "webpack --mode development --watch",
"test": "jest --config jest.config.js",
"precommit": "pretty-quick --staged",
"lint": "tslint -c tslint.json --project tsconfig.json",
"format": "prettier-eslint --write \"src/**/*.{ts,tsx,json,css,js,jsx}\""
},
"author": "ryantxu",
"license": "MIT",
"lint-staged": {
"src/**/*.{ts,tsx,json,css,js,jsx}": [
"prettier-eslint"
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"bracketSpacing": false,
"printWidth": 100
},
"dependencies": {
"jquery": "^3.2.1",
"lodash": "^4.17.10",
"moment": "^2.22.1"
},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/lodash": "^4.14.74",
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^1.0.0",
"grafana-sdk-mocks": "github:ryantxu/grafana-sdk-mocks",
"jest": "^23.0.1",
"ng-annotate-webpack-plugin": "^0.3.0",
"release-it": "^10",
"prettier": "^1.15.3",
"prettier-eslint": "^8.8.0",
"prettier-eslint-cli": "^4.7.0",
"pretty-quick": "^1.10.0",
"replace-in-file-webpack-plugin": "^1.0.6",
"style-loader": "^0.22",
"ts-jest": "^23",
"ts-loader": "^4.3.0",
"typescript": "^3",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.9.1",
"webpack-cli": "^3.1"
}
}