-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.31 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
{
"name": "craigwatch",
"version": "1.0.0",
"description": "An analytics tool for craigslist.com.",
"private": true,
"scripts": {
"test": "jest --watch",
"start": "npm run server",
"server": "./craigwatch prod",
"server-dev": "go run . dev",
"build": "MODE=production webpack",
"build-dev": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tmunayyer/craigwatch.git"
},
"author": "Thomas Munayyer",
"license": "ISC",
"bugs": {
"url": "https://github.com/Tmunayyer/craigwatch/issues"
},
"homepage": "https://github.com/Tmunayyer/craigwatch#readme",
"dependencies": {
"highcharts": "^8.1.2",
"highcharts-vue": "^1.3.5",
"vue": "^2.6.11",
"vue-router": "^3.3.4",
"vue-spinner": "^1.0.4"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@vue/test-utils": "^1.0.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"css-loader": "^3.6.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.1.0",
"jest-serializer-vue": "^2.0.2",
"vue-jest": "^3.0.6",
"vue-loader": "^15.9.3",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
}
}