-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 874 Bytes
/
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
{
"name": "feed-forward-nn-playground",
"version": "1.0.0",
"description": "A playground for feed forward neural networks",
"main": "index.js",
"scripts": {
"watch": "webpack --watch",
"build": "webpack",
"build-prod": "webpack --config webpack-prod.config.js",
"server": "webpack-dev-server --host 0.0.0.0"
},
"author": "Adel KARZAZI",
"license": "",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.5.2",
"html-webpack-plugin": "^4.2.0",
"mini-css-extract-plugin": "^0.9.0",
"ts-loader": "5.3.3",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"@types/react": "16.9.6",
"@types/react-dom": "16.9.6",
"react": "16.13.1",
"react-dom": "16.13.1",
"fast-deep-equal":"3.1.1"
}
}