-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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
60
61
62
63
64
65
66
67
68
69
{
"name": "MyLib",
"version": "0.1.0",
"description": "",
"main": "dist/bundle.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "karma start",
"watch:test": "npm run test -- --auto-watch --no-single-run",
"dev": "webpack-dev-server --config webpack/dev.config.js --hot",
"start": "npm run dev",
"build": "ENV=production webpack --config webpack/prod.config.js",
"typedoc": "typedoc --out docs --exclude '**/*.spec.ts' ./src/",
"precommit": "lint-staged"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jasmine": "^3.4.4",
"@types/node": "^10.17.0",
"@types/webpack": "^4.39.5",
"awesome-typescript-loader": "^5.2.1",
"css-loader": "^3.2.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"husky": "^3.0.9",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.5.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-jasmine": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-remap-coverage": "^0.1.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript": "^4.1.1",
"karma-webpack": "^4.0.2",
"lint-staged": "^9.4.2",
"mini-css-extract-plugin": "^0.8.0",
"prettier": "^1.18.2",
"source-map": "^0.7.3",
"source-map-loader": "^0.2.4",
"tslint": "^5.20.0",
"tslint-microsoft-contrib": "^6.2.0",
"typedoc": "^0.15.0",
"typedoc-webpack-plugin": "^1.1.4",
"typescript": "^3.6.4",
"uglify-js": "^3.6.5",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
],
"*.ts": [
"prettier --write",
"tslint --fix -c ./tslint.json 'src/**/*.ts'",
"git add"
]
}
}