-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.44 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
{
"name": "collection-wraplet",
"version": "0.9.0",
"description": "Managing collections.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/lukasz-zaroda/collection-wraplet.git"
},
"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"
},
"files": [
"dist"
],
"author": "Łukasz Zaroda",
"license": "MIT",
"dependencies": {
"sortablejs": "^1.15.2",
"wraplet": "^0.7.0"
},
"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",
"@types/sortablejs": "^1.15.8"
}
}