-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.09 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": "simulations",
"version": "1.0.0",
"description": "Physics simulations by Project Delta",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/parcel index.html",
"build": "NODE_ENV=production ./node_modules/.bin/parcel build index.html --no-source-maps --public-url .",
"deploy": "npm run-script build && ./node_modules/.bin/gh-pages -d dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/has-delta/simulations.git"
},
"keywords": [
"physics",
"physics-simulation",
"matter-js",
"typescript",
"web",
"hana-academy-seoul",
"has-delta",
"website"
],
"author": "Project Delta",
"license": "MIT",
"bugs": {
"url": "https://github.com/has-delta/simulations/issues"
},
"homepage": "https://github.com/has-delta/simulations#readme",
"devDependencies": {
"@types/material-ui": "^0.21.6",
"gh-pages": "^2.0.1",
"parcel": "^1.12.3",
"typescript": "^3.4.5"
},
"dependencies": {
"material-components-web": "^2.0.0"
}
}