-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.52 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": "speculative-camouflage-generator",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"dev": "gulp develop && gulp watch",
"build": "gulp clean && gulp build",
"serve": "yarn run build && docker compose up tor",
"publish": "docker compose down && yarn run serve",
"webpack-build": "webpack --config webpack.prod.js",
"webpack-dev": "webpack-dev-server --config webpack.dev.js"
},
"author": "lizzthabet",
"license": "MIT",
"dependencies": {
"lodash": "^4.17.21",
"p5": "^0.8.0",
"voronoi": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.4.3",
"@babel/preset-typescript": "^7.3.3",
"@types/lodash": "^4.14.129",
"@types/p5": "^0.7.2",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.5",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"browser-sync": "^2.26.13",
"clean-webpack-plugin": "^2.0.1",
"del": "^6.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"gulp": "4.0.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "^1.17.0",
"terser-webpack-plugin": "^5.3.1",
"typescript": "^4.6.4",
"webpack": "^5.0.0",
"webpack-cdn-plugin": "^3.0.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1",
"webpack-merge": "^5.8.0",
"worker-loader": "^3.0.5"
}
}