-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.54 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": "nondari",
"version": "0.0.1",
"description": "A way to view cocktails and search an ingredient tree",
"main": "index.js",
"scripts": {
"start": "python3 ./MakeClientJson.py && webpack-dev-server --port 9000 --inline --progress --profile --colors --watch --content-base src/ --mode development",
"build": "python3 ./MakeClientJson.py && webpack --config webpack.config.js --mode production",
"build.prod": "python3 ./MakeClientJson.py && ./optimizeSVG.sh && webpack --config webpack.config.js -p",
"test": "karma start karma.config.js"
},
"keywords": [
"webpack",
"webpack4",
"typescript"
],
"author": "0xNF",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "2.8.7",
"@types/jquery": "^3.3.29",
"@types/mathjs": "^4.4.5",
"@types/node": "7.0.0",
"@types/svg.js": "^2.3.1",
"awesome-typescript-loader": "5.2.0",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"jasmine-core": "3.1.0",
"karma": "4.0.0",
"karma-jasmine": "2.0.1",
"karma-phantomjs-launcher": "1.0.4",
"karma-webpack": "3.0.0",
"mathjs": "^5.4.2",
"source-map-loader": "0.2.3",
"svgo": "^1.1.1",
"tslint": "5.10.0",
"tslint-loader": "3.6.0",
"typescript": "3.3",
"webpack": "4.12.0",
"webpack-bundle-analyzer": "^3.0.4",
"webpack-cli": "^3.2.3",
"webpack-command": "^0.4.2",
"webpack-dev-server": ">=3.1.11"
},
"dependencies": {
"fuse.js": "^3.4.5",
"svg.js": "^2.7.1"
}
}