-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 KB
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": "lambda-explorer",
"version": "0.0.1",
"description": "exploration in webdev",
"repository": "https://github.com/evinism/lambda-explorer",
"main": "index.js",
"type": "module",
"scripts": {
"watch": "webpack --watch",
"dev": "webpack-dev-server --port 8082 --static public --mode=development",
"webpack": "webpack",
"test": "mocha"
},
"author": "evin",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-react": "^7.28.5",
"@babel/register": "^7.28.6",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"babel-loader": "^10.1.1",
"chai": "^6.2.2",
"mocha": "^11.7.5",
"ts-loader": "^9.5.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2",
"webpack-dev-server": "^5.2.3"
},
"dependencies": {
"@types/ramda": "^0.31.1",
"classnames": "^2.5.1",
"ramda": "^0.32.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"reactjs-popup": "^2.0.6"
}
}