-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 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
{
"name": "cg3d_project_ssao",
"version": "1.0.0",
"description": "Implementation of SSAO for Computer Graphics & 3D exam",
"private": true,
"engines": {
"node": "12.13.0",
"npm": "6.5.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --config webpack.prod.js",
"build-dev": "webpack --config webpack.dev.js",
"dev": "webpack-dev-server --open --config webpack.dev.js",
"start": "node ./server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivan94fi/cg3d_project_ssao.git"
},
"author": "Ivan Prosperi",
"license": "ISC",
"bugs": {
"url": "https://github.com/ivan94fi/cg3d_project_ssao/issues"
},
"homepage": "https://github.com/ivan94fi/cg3d_project_ssao#readme",
"dependencies": {
"express": "^4.17.1",
"portfinder": "^1.0.25",
"three": "^0.112.1"
},
"devDependencies": {
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^5.0.2",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^1.1.3",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.3",
"webpack-merge": "^4.2.2"
}
}