-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.72 KB
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
51
52
{
"name": "ant-sim",
"version": "1.0.0",
"license": "MIT",
"private": true,
"description": "Anthill Simulator ispaired by the book 'ANT ENCOUNTERS, Interaction Networks and Colony behavior' by D.M.Gordon and the Complex Adaptive Systems Theory",
"main": "src/index.js",
"author": {
"name": "Marco Somma",
"email": "mak.so1979@gmail.com",
"url": "https://github.com/marcosomma"
},
"scripts": {
"start": "yarn run build && node server.js",
"build": "export \"NODE_ENV=production NODE_OPTIONS=--max_old_space_size=8192\" && export \"NODE_ENV=production\" &&./node_modules/webpack/bin/webpack.js -p --progress",
"dev": "NODE_ENV=dev webpack-dev-server --colors --host 0.0.0.0 --port 8080 --config webpack.dev.config.js",
"prettify": "./node_modules/prettier/bin-prettier.js --write '**/*.js'"
},
"dependencies": {
"babel-register": "^6.26.0",
"babylonjs": "^4.1.0",
"babylonjs-gui": "^4.1.0",
"babylonjs-loaders": "^4.1.0",
"babylonjs-materials": "^4.2.0",
"cannon": "^0.6.2",
"copy-webpack-plugin": "^6.0.3",
"cors": "^2.8.5",
"css-loader": "^5.0.1",
"express": "^4.17.1",
"html-webpack-plugin": "^4.5.1",
"mtl-loader": "^0.2.0",
"npx": "^10.2.2",
"prettier": "^2.2.1",
"uuid": "^8.3.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-obj-loader": "^1.0.4"
},
"devDependencies": {
"@babel/core": "^7.10.5",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"file-loader": "^6.2.0",
"mocha": "^8.0.1",
"mocha-webpack": "^1.1.0",
"source-map-loader": "^1.1.0",
"ttf-loader": "^1.0.2",
"webpack-dev-server": "^3.11.0",
"webpack-node-externals": "^2.5.0"
}
}