-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 910 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 910 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
{
"name": "pendulum-painter",
"version": "1.0.0",
"description": "p5js based pendulum painter",
"main": "src/index.js",
"scripts": {
"start": "webpack --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"watch": "webpack --watch --config webpack.dev.js",
"dev": "webpack-dev-server --config webpack.dev.js --open",
"clean": "rm -rf node_modules && rm -rf dist",
"clean:dist": "rm -rf dist",
"clean:deps": "rm -rf node_modules"
},
"keywords": [
"p5",
"TypeScript",
"webpack"
],
"author": "Billy Zou",
"license": "MIT",
"devDependencies": {
"@types/p5": "^0.9.0",
"html-webpack-plugin": "^3.2.0",
"ts-loader": "^6.0.4",
"typescript": "^5.4.5",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"p5": "^0.9.0"
}
}