forked from polarbasin/foodigi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.97 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
61
62
{
"name": "polarbasin",
"version": "1.0.0",
"description": "FoodCompass",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server/dist/index.js",
"nodemon": "nodemon server/dist/index.js",
"node-env": "node -r dotenv/config server/dist/index.js",
"webpack": "webpack -d",
"watch": "webpack -d --watch",
"babel": "babel server/src/ -d server/dist",
"babel-w": "babel-watch server/src/index.js",
"prestart": "npm install && npm run build",
"build": "npm run babel && npm run webpack",
"lint": "eslint 'client/app/**/*.jsx' 'server/**/*.js';",
"dev": "export NODE_ENV=development && npm run lint && npm run babel && concurrently --kill-others --raw \"npm run node-env\" \"npm run watch\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/polarbasin/polarbasin.git"
},
"author": "Harvey Sanders + Daniel Glaser",
"license": "ISC",
"bugs": {
"url": "https://github.com/polarbasin/polarbasin/issues"
},
"homepage": "https://github.com/polarbasin/polarbasin#readme",
"dependencies": {
"axios": "^0.13.1",
"babel-cli": "^6.11.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-watch": "^2.0.2",
"cities": "^1.1.2",
"css-loader": "^0.23.1",
"dotenv": "^2.0.0",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"express": "^4.14.0",
"great-circle": "0.0.0",
"gyronorm": "^2.0.4",
"html-loader": "^0.4.3",
"morgan": "^1.7.0",
"node-sass": "^3.8.0",
"nonce": "^1.0.4",
"oauth-signature": "^1.3.1",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-loading": "0.0.9",
"request": "^2.74.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"underscore": "^1.8.3",
"webpack": "^1.13.1"
}
}