-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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
{
"name": "TensorShade",
"version": "1.0.0",
"description": "A machine learning app that uses Tensorflow, React, and Parcel to best match makeup foundation shades from various beauty brands to images of skin tones.",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel index.html",
"watch": "parcel watch index.html",
"build": "parcel build index.html --out-dir public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KaylaKremer/TensorShade.git"
},
"author": "Kayla Kremer",
"license": "MIT",
"bugs": {
"url": "https://github.com/KaylaKremer/TensorShade/issues"
},
"homepage": "https://github.com/KaylaKremer/TensorShade#readme",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"parcel-bundler": "^1.12.3",
"sass": "^1.21.0",
"mem": ">=4.0.0"
},
"dependencies": {
"@babel/runtime": "^7.4.5",
"@tensorflow/tfjs": "^1.1.2",
"@tensorflow/tfjs-vis": "^1.1.0",
"babel-polyfill": "^6.26.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"mem": ">=4.0.0"
},
"keywords": [
"Tensorflow",
"React",
"Parcel",
"machine",
"learning",
"ML",
"AI"
]
}