forked from jahlela/triptunes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.94 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
{
"name": "triptunes",
"version": "1.0.0",
"description": "Use TripTunes to create a Spotify playlist of songs that mention towns you will drive through",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:client": "webpack",
"build:lsc": "babel backend/src --out-dir backend/lsc --plugins=lightscript -x .lsc",
"build:backend": "babel backend/src --out-dir backend/dist --presets=lightscript,env -x .lsc",
"backend": "npm run build:backend && SLS_DEBUG=* sls offline --noTimeout start",
"dev:backend": "./node_modules/.bin/nodemon --exec 'npm run backend' --watch backend/src --ext lsc",
"lint": "./node_modules/.bin/eslint . --ext .lsc",
"build": "npm run build:client && npm run build:backend",
"dev": "webpack --watch",
"serve:client": "./node_modules/.bin/serve frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jahlela/triptunes.git"
},
"author": "Alex Rattray <rattray.alex@gmail.com> (http://alexrattray.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jahlela/triptunes/issues"
},
"homepage": "https://github.com/jahlela/triptunes#readme",
"devDependencies": {
"eslint-plugin-react": "^6.10.0",
"serve": "^5.0.2",
"serverless": "^1.8.0",
"serverless-offline": "^3.10.2",
"webpack-dev-server": "^2.4.1",
"yarn": "^0.21.3"
},
"dependencies": {
"@google/maps": "^0.3.1",
"axios": "^0.15.3",
"babel-cli": "^6.23.0",
"babel-loader": "^6.4.0",
"babel-preset-env": "^1.2.1",
"babel-preset-lightscript": "^0.4.1",
"babel-preset-react": "^6.23.0",
"cheerio": "^0.22.0",
"eslint": "^3.17.1",
"lightscript-eslint": "^0.4.2",
"lodash": "^4.17.4",
"material-ui": "^0.17.0",
"nodemon": "^1.11.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router-dom": "^4.0.0",
"react-tap-event-plugin": "^2.0.1",
"webpack": "^2.2.1"
}
}