-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 1.07 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
{
"name": "whats-that",
"version": "0.1.0",
"private": true,
"dependencies": {
"@tensorflow/tfjs": "^0.9.1",
"cross-env": "^5.1.4",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-scripts": "1.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "npm run build-css && react-scripts build",
"build-css": "node-sass-chokidar --include-path ./src/style --include-path ./node_modules src/style -o src/_build",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src/style --include-path ./node_modules src/style -o src/_build --watch --recursive",
"test": "react-scripts test --env=jsdom",
"buildGithubPages": "npm run build-css && cross-env PUBLIC_URL='https://jaretburkett.github.io/Whats-That' react-scripts build && cp -r build docs",
"eject": "react-scripts eject"
},
"devDependencies": {
"clang-format": "^1.2.3",
"localtunnel": "^1.9.0",
"material-ui": "^0.20.0",
"mobx": "^4.2.0",
"mobx-react": "^5.0.0",
"node-sass-chokidar": "^1.2.2",
"react-webcam": "^0.4.3"
}
}