-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 925 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": "arkanai",
"version": "1.0.0",
"private": true,
"description": "Arkanoid with Deep Q-Learning using TensorFlow.js.",
"license": "UNLICENSED",
"author": "Luciano Ropero <lropero@gmail.com>",
"type": "module",
"main": "index.js",
"scripts": {
"audit": "npx upgradeps -v",
"clean": "npx rimraf node_modules && npx rimraf package-lock.json",
"lint": "npx prettier --write . && npx standard --fix",
"nuke": "npm run clean && npm cache verify && npm install",
"sort": "npx sort-package-json",
"start": "npx concurrently \"node index.js\" \"npx serve public\""
},
"dependencies": {
"@tensorflow/tfjs-node": "4.2.0",
"lodash": "4.17.21"
},
"devDependencies": {
"concurrently": "7.6.0",
"cors": "2.8.5",
"express": "4.18.2",
"morgan": "1.10.0",
"prettier": "2.8.4",
"serve": "14.2.0",
"standard": "17.0.0",
"upgradeps": "2.0.5"
}
}