-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.35 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
{
"name": "functional-ts",
"version": "1.0.0",
"description": "",
"main": "dist/set.numbers.demo.js",
"type": "module",
"scripts": {
"lint": "eslint --ext .ts .",
"build": "rimraf ./dist && tsc && babel dist -d dist",
"numbers": "npm run build && node dist/src/set.numbers.demo.js",
"plane": "npm run build && http-server -p 0 -o src/set.plane.demo.html",
"fractals": "npm run build && http-server -p 0 -o src/set.fractals.demo.html",
"test": "rimraf coverage && npm run build && cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"ncu": "ncu -u -x eslint"
},
"author": "Akram El Assas",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.5",
"babel-jest": "^29.7.0",
"babel-plugin-add-import-extension": "^1.6.0",
"babel-plugin-module-resolver": "^5.0.2",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"npm-check-updates": "^17.1.9"
}
}