-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.39 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
{
"name": "my_own_angularjs",
"version": "1.0.0",
"main": "src/index.js",
"repository": "https://github.com/Mgrdich/my_own_angularjs.git",
"author": "Mgrdich <mgotm13@gmail.com>",
"license": "MIT",
"scripts": {
"build": "webpack",
"test": "jest --env=node --colors --coverage test",
"lint": "eslint src/**/*.{js,ts}",
"format-lint": "eslint src/**/*.{js,ts} --fix",
"format-prettier": "prettier --write 'src/**/*.{js,ts}' --config ./.prettierrc"
},
"engines": {
"node": "v16.15.0",
"npm": "8.5.5"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"@webpack-cli/generators": "^2.4.2",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.4",
"declaration-bundler-webpack-plugin": "^1.0.3",
"eslint": "^8.12.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"npm run format-prettier",
"npm run format-lint",
"npm run test"
]
},
"dependencies": {
"lodash": "^4.17.21"
}
}