-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 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
{
"name": "blind_painter",
"version": "1.0.0",
"description": "Artificial life ecosystem",
"main": "index.js",
"repository": "git@github.com:mitsuyoshi-yamazaki/ALifeGameJam2019.git",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/p5": "^0.9.0",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"tslint-loader": "^3.5.4",
"typescript": "^3.8.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@babel/register": "^7.10.4",
"@devexpress/dx-chart-core": "^2.7.1",
"@devexpress/dx-react-chart": "^2.7.1",
"@devexpress/dx-react-chart-material-ui": "^2.7.1",
"@devexpress/dx-react-core": "^2.7.1",
"@devexpress/dx-react-grid": "^2.7.1",
"@devexpress/dx-react-grid-material-ui": "^2.7.1",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@types/react": "^16.9.41",
"@types/react-dom": "^16.9.8",
"babel-loader": "^8.1.0",
"bootstrap": "^4.5.0",
"html-webpack-plugin": "^4.3.0",
"material-table": "^1.69.0",
"p5": "^0.8.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"build": "webpack",
"watch": "webpack -w",
"start": "webpack-dev-server --open --mode development",
"add_simulation": "func() { cp pages/template.html \"pages/$1.html\" && cp src/entry_points/template.ts src/entry_points/$1.ts; }; func"
}
}