-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 899 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 899 Bytes
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
{
"name": "website",
"version": "1.0.0",
"description": "my website",
"main": "index.js",
"type": "module",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.config.js",
"dev": "webpack --config webpack.dev.js",
"start": "webpack serve --config webpack.dev.js"
},
"author": "James Martinez",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"eslint": "^9.9.0",
"html-loader": "^5.1.0",
"html-webpack-plugin": "^5.6.0",
"jsdoc": "^4.0.3",
"style-loader": "^4.0.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"gsap": "^3.12.5",
"marked": "^14.1.2",
"three": "^0.170.0"
}
}