-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.36 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
{
"name": "editable-list",
"version": "1.0.1",
"description": "Editable list",
"main": "index.js",
"repository": "git@github.com:matfin/editable-list.git",
"author": "Matthew Finucane <matfin@gmail.com>",
"license": "MIT",
"scripts": {
"build": "webpack --config webpack.prod.js",
"checks": "yarn coverage && yarn lint",
"coverage": "jest --collect-coverage",
"dev": "webpack --config webpack.dev.js",
"lint": "eslint ./src/**/*.ts",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@testing-library/dom": "^7.28.1",
"@testing-library/user-event": "^12.2.2",
"@types/dom-inputevent": "^1.0.6",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"babel-loader": "^8.2.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"jest-environment-jsdom-sixteen": "^1.0.3",
"pre-commit": "^1.2.2",
"prettier": "^2.1.2",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"webpack-merge": "^5.4.0"
},
"pre-commit": [
"checks"
]
}