-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.28 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": "jet-fuel",
"version": "1.0.0",
"description": "A URL shortener and bookmarking app built as our first project in module 4. This is our introduction to JS-based back end technologies:",
"main": "./public/app/app.js",
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"test": "node_modules/.bin/mocha ./tests/**.js || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JeffBuss/jet-fuel.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JeffBuss/jet-fuel/issues"
},
"homepage": "https://github.com/JeffBuss/jet-fuel#readme",
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.24.0",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.24.0",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"mocha": "^3.2.0",
"webpack": "^2.2.1"
},
"dependencies": {
"body-parser": "^1.17.1",
"css": "^2.2.1",
"css-loader": "^0.27.3",
"express": "^4.15.2",
"knex": "^0.12.8",
"node-css": "^0.1.0",
"node-sass": "^4.5.0",
"pg": "^6.1.4",
"sass": "^0.5.0",
"sass-loader": "^6.0.3",
"scss": "^0.2.4",
"scss-loader": "0.0.1",
"style-loader": "^0.13.2"
},
"proxy": {
"*": "http://localhost:3000"
}
}