-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.49 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
{
"name": "puddler",
"version": "4.1.1",
"description": "",
"main": "Puddler.js",
"scripts": {
"test": "npx jest src/",
"compile": "tsc -p ./tsconfig.json",
"insertHeader": "bash ./shellscripts/insertHeader.sh",
"deploy": "npm run build && npm run insertHeader src/header.js dist/Puddler.js && cp README.md dist/README.md && cp LICENSE dist/LICENSE",
"build": "npm run compile && webpack",
"lint": "npm run lint:format && npm run lint:analyse",
"lint:format": "prettier --check ./src",
"lint:analyse": "eslint ./src",
"lint:format:fix": "prettier --write ./src"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.22.5",
"@jest/globals": "^29.6.2",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"babel-loader": "^9.1.2",
"core-js": "^3.30.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.6.2",
"prettier": "^3.2.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0"
}
}