-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 969 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 969 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
36
37
{
"name": "cgraph",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"pretest": "eslint src",
"test": "jest",
"build-dev": "webpack --mode development --config webpack.dev.config.js",
"build-prod": "webpack --mode production --config webpack.prod.config.js",
"serve": "node app.js"
},
"keywords": [],
"author": "Bastien Dalla Piazza",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.0.3",
"eslint": "^7.5.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.1.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"convex-hull": "^1.0.3",
"express": "^4.17.1",
"howler": "^2.2.0",
"mathjs": "^7.0.2",
"pixi-scrollbox": "^2.1.4",
"pixi-viewport": "^4.12.2",
"pixi.js": "^5.3.0"
}
}