-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.56 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
51
{
"name": "@fdmg/resubstitute",
"version": "0.1.25",
"description": "Pub/Sub drop-in replacement for Microsoft/ReSub",
"types": "ReSubstitute.d.ts",
"main": "ReSubstitute.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "[email protected]:FDMediagroep/ReSubstitute.git"
},
"scripts": {
"build": "npm run webpack",
"lint": "eslint \"src/**\"",
"prettier": "prettier -c **/*.ts",
"test": "jest",
"watch": "npm run webpack:dev -- --watch",
"webpack": "cross-env WEBPACK_BUNDLE_ANALYZER=true NODE_ENV=production webpack --mode=production",
"webpack:dev": "cross-env NODE_ENV=development webpack --mode=development"
},
"keywords": [
"ReSub",
"React",
"state",
"manager",
"TypeScript"
],
"author": "Willem Liu",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^6.0.1"
}
}