-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
41 lines (41 loc) · 1.37 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
{
"name": "three-fluid-sim",
"version": "1.0.0",
"description": "2D Fluid Simulation three.js implementation.",
"main": "index.js",
"repository": "https://github.com/amsXYZ/three-fluid-sim.git",
"author": "Andrés Valencia Téllez <[email protected]>",
"license": "MIT",
"scripts": {
"test": "yarn run tslint && yarn run prettier",
"fix": "yarn tslint:fix && yarn prettier:fix",
"build": "webpack --config webpack/prod.config.js",
"start": "webpack-dev-server --config webpack/dev.config.js",
"start:local": "yarn start --host 0.0.0.0",
"tslint": "tslint --project tsconfig.json",
"tslint:fix": "tslint --fix --project tsconfig.json",
"prettier": "prettier -l \"**/*.ts\" \"**/*.tsx\" \"**/*.json\"",
"prettier:fix": "prettier --write -l \"**/*.ts\" \"**/*.tsx\" \"**/*.json\""
},
"dependencies": {
"dat.gui": "0.7.6",
"stats.js": "^0.17.0",
"three": "^0.111.0"
},
"devDependencies": {
"copy-webpack-plugin": "^5.1.1",
"html-webpack-plugin": "^3.2.0",
"path": "^0.12.7",
"prettier": "^1.19.1",
"source-map-loader": "^0.2.4",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2"
}
}