-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"name": "p5-art",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"start-hot": "webpack --config config/webpack.hot.config.js",
"start-dev": "webpack --config config/webpack.dev.config.js",
"start": "webpack --config config/webpack.prod.config.js",
"clean": "rm -r ./dist/*"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.10",
"@types/file-saver": "^2.0.4",
"@types/lodash-es": "^4.17.5",
"@types/memoizee": "^0.4.6",
"@types/p5": "^1.3.1",
"babel-loader": "^8.2.2",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"terser-webpack-plugin": "^5.0.3",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"webpack": "^5.10.1",
"webpack-cli": "^4.2.0",
"webpack-dev-middleware": "^4.0.2",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.6.1"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"chalk": "^4.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"file-saver": "^2.0.5",
"jszip": "^3.7.1",
"lodash-es": "^4.17.21",
"memoizee": "^0.4.15",
"p5": "^1.4.0"
}
}