-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"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.23.7",
"@babel/preset-env": "^7.23.8",
"@babel/preset-react": "^7.23.3",
"@babel/register": "^7.23.7",
"babel-loader": "^9.1.3",
"chai": "^5.0.0",
"mocha": "^10.2.0",
"ts-loader": "^9.5.1",
"tsx": "^4.19.1",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"dependencies": {
"@babel/polyfill": "^7.10.4",
"@types/ramda": "^0.29.9",
"classnames": "^2.5.1",
"ramda": "^0.29.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"reactjs-popup": "^2.0.6"
}
}