-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "theorytracker",
"version": "0.1.0",
"description": "",
"author": "hlorenzi",
"private": true,
"main": "index.js",
"type": "module",
"scripts": {
"build": "webpack --config webpack.config.cjs",
"dev": "webpack --config webpack.config.cjs --watch --mode development",
"start": "http-server -p 80",
"test": "node ./build/test.js"
},
"browserslist": [
"> 2%",
"not dead",
"not ie 11"
],
"dependencies": {
"@babel/core": "^7.22.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.22.5",
"@babel/preset-react": "^7.22.5",
"@types/node": "^20.2.5",
"@types/react": "^18.2.9",
"@types/react-dom": "^18.2.4",
"@types/styled-components": "^5.1.26",
"@types/wicg-file-system-access": "^2020.9.6",
"babel-loader": "^9.1.2",
"core-js": "^3.30.2",
"immutable": "^4.3.0",
"pako": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"regenerator-runtime": "^0.13.11",
"source-map-loader": "^4.0.1",
"styled-components": "^5.3.11",
"ts-loader": "^9.4.3",
"typescript": "^5.1.3",
"webpack": "^5.86.0",
"webpack-cli": "^5.1.4"
}
}