-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.62 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
52
{
"name": "xaval",
"version": "",
"description": "Interactive web-based playground for computer vision and image processing",
"private": true,
"scripts": {
"clean": "rimraf public",
"opencv": "copyfiles -u 2 src/opencv/* public",
"prep": "npm run clean && npm run opencv",
"build": "npm run prep && webpack --config webpack.prod.js",
"watch": "npm run prep && webpack --config webpack.dev.js --watch",
"start": "npm run prep && webpack-dev-server --open --config webpack.dev.js",
"deploy": "NODE_ENV=production npm run build && firebase deploy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/habbes/xaval.git"
},
"keywords": [],
"author": "Clement Habinshuti <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/habbes/xaval/issues"
},
"homepage": "https://github.com/habbes/xaval#readme",
"devDependencies": {
"@types/lodash": "^4.14.109",
"copyfiles": "^2.0.0",
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.1",
"monaco-editor-webpack-plugin": "^1.2.1",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"style-loader": "^0.21.0",
"ts-loader": "^4.3.0",
"typescript": "^2.8.3",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.8.2",
"webpack-cli": "^2.1.3",
"webpack-dev-server": "^3.1.4",
"webpack-merge": "^4.1.2"
},
"dependencies": {
"lodash": "^4.17.10",
"monaco-editor": "^0.13.1",
"rxjs": "^6.1.0"
}
}