-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
45
46
47
48
49
50
{
"name": "goodie.work",
"version": "2.0.22",
"scripts": {
"start": "concurrently --kill-others \"npm run frontend:build\" \"npm run backend:build\"",
"dev": "concurrently --kill-others \"npm run backend:dev\" \"npm run frontend:dev\"",
"frontend:dev": "webpack serve --progress --config webpack.config.dev.js",
"frontend:build": "webpack --progress --config webpack.config.prod.js",
"backend:dev": "nodemon index.js",
"backend:build": "node index.js",
"preview": "vite preview"
},
"author": "Goodness Urama",
"dependencies": {
"concurrently": "^7.4.0",
"express": "^4.18.1",
"gsap": "^3.11.2",
"ogl": "^0.0.101",
"pug": "^3.0.2",
"three": "^0.145.0"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"glslify-loader": "^2.0.0",
"include-media": "^1.4.10",
"mini-css-extract-plugin": "^2.6.1",
"nodemon": "^2.0.20",
"normalize-wheel": "^1.0.1",
"postcss": "^8.4.17",
"postcss-loader": "^7.0.1",
"prefix": "^1.0.0",
"raw-loader": "^4.0.2",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
},
"nodemonConfig": {
"ignore": [
"public/",
"app/"
]
}
}