-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.58 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
49
50
51
{
"name": "@geosp/hello_brain",
"version": "1.0.0",
"description": "",
"main": "main.ts",
"scripts": {
"start": "node lib/main.js",
"watch": "babel --watch src --out-dir lib --extensions '.ts,.tsx' --ignore ./**/node_modules/",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline --ignore ./**/node_modules/"
},
"author": "Geovanny F. Fajardo",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.6.0",
"@tensorflow/tfjs-node": "^1.2.9",
"@types/chalk": "^2.2.0",
"@types/moment": "^2.13.0",
"brain.js": "^2.0.0-alpha.9",
"chalk": "^2.4.2",
"futil-js": "^1.62.1",
"lodash": "^4.17.20",
"moment": "^2.24.0",
"nodeplotlib": "^0.6.4"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.4.1",
"@babel/preset-typescript": "^7.3.2",
"@types/cpx": "^1.5.0",
"@types/express": "^4.17.1",
"@types/lodash": "^4.14.138",
"@types/node": "^12.7.4",
"express": "^4.17.1",
"typescript": "^3.6.3"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"printWidth": 100
}
}