-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.04 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
{
"name": "b",
"version": "0.0.0",
"description": "Neural Networks",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:file": "npm run build && node",
"build": "npm run build:web && npm run build:node",
"build:web": "webpack --config webpack.config.js --mode development",
"build:node": "webpack --config webpack.node.js --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marco-ponds/B.git"
},
"author": "Marco Stagni <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/marco-ponds/B/issues"
},
"homepage": "https://github.com/marco-ponds/B#readme",
"devDependencies": {
"babel-loader": "7.1.4",
"babel-preset-stage-0": "^6.24.1",
"webpack": "4.1.0",
"webpack-cli": "2.0.10"
},
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "^4.8.5",
"puppeteer": "1.4.0"
}
}