-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.3 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
{
"name": "wraplet",
"version": "0.7.0",
"description": "",
"main": "dist/index.js",
"license": "MIT",
"author": "Łukasz Zaroda",
"repository": {
"type": "git",
"url": "https://github.com/lukasz-zaroda/wraplet.git"
},
"files": ["dist"],
"scripts": {
"setup": "yarn install",
"build": "./node_modules/.bin/webpack --mode production --config ./webpack.config.js",
"dev:build": "./node_modules/.bin/webpack --mode development --config ./webpack.config.js",
"dev:watch": "./node_modules/.bin/webpack --mode development --watch --config ./webpack.config.js",
"lint": "tsc --noemit && npx eslint './src/**/*.ts' './tests/**/*.ts'",
"lint:fix": "npx eslint './src/**/*.ts' './tests/**/*.ts' --fix",
"tests": "jest"
},
"dependencies": {
},
"devDependencies": {
"typescript": "^5.5.4",
"ts-loader": "^9.5.1",
"@eslint/js": "^9.9.1",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"typescript-eslint": "^8.2.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"prettier": "^3.3.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier-eslint": "^16.3.0",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"ts-jest": "^29.2.5",
"@types/jest": "^29.5.12",
"jest-environment-jsdom": "^29.7.0"
}
}