-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.74 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
53
54
55
56
57
58
59
60
{
"name": "crushlines",
"version": "1.0.0",
"description": "Check out who's checking you out.",
"main": "lib/start.js",
"scripts": {
"start": "node lib/start.js",
"dev": "node ./dev-server.js & npm start",
"lint": "node_modules/eslint/bin/eslint.js",
"build": "webpack --progress --colors",
"watch": "webpack --progress --colors --watch --display-error-details",
"test": "./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*test.js",
"coverage": "istanbul cover ./node_modules/.bin/tape ./tests/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/happy-hours/crushlines.git"
},
"author": "@heron2014 @minaorangina",
"license": "ISC",
"bugs": {
"url": "https://github.com/happy-hours/crushlines/issues"
},
"config": {
"ghooks": {
"pre-push": "npm run test && npm run lint",
"pre-merge": "npm install"
}
},
"homepage": "https://github.com/happy-hours/crushlines#readme",
"dependencies": {
"babel-core": "^6.7.7",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.7.2",
"hapi": "^13.3.0",
"hoek": "^4.0.0",
"inert": "^3.2.0",
"node-sass": "^3.6.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-hot-loader": "^1.3.0",
"react-router": "^2.0.0",
"sass-loader": "^3.2.0"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"css-loader": "^0.23.1",
"eslint": "^2.9.0",
"eslint-plugin-react": "^5.0.1",
"istanbul": "^0.4.2",
"postcss-loader": "^0.9.1",
"react-slick": "^0.12.0",
"style-loader": "^0.13.0",
"tape": "^4.4.0",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1"
}
}