-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 791 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 791 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
{
"name": "brain",
"version": "2.0.0",
"private": true,
"description": "Simulation of brain neurons firing",
"main": "index.js",
"scripts": {
"test": "test",
"dev": "yarn && webpack-dev-server --config build/webpack.config.js --open --env.NODE_ENV=development"
},
"keywords": [
"simulation",
"neurons"
],
"author": "Ofir Geller",
"license": "UNLICENSED",
"devDependencies": {
"@types/webpack-dev-server": "^3.10.0",
"@types/node": "8.5.1",
"@types/webpack": "4.4.11",
"@types/webpack-env": "1.13.6",
"ts-loader": "^6.2.1",
"typescript": "^3.7.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@svgdotjs/svg.js": "^3.0.16",
"tslib": "^1.10.0"
}
}