-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2 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": "music-tutor",
"version": "0.1.0",
"description": "Music Tutor",
"author": "Danny Shekhtman",
"license": "UNLICENSED",
"private": true,
"repository": {
"type": "git",
"url": ""
},
"main": "js/main.js",
"dependencies": {
"babel-core": "^6.7.6",
"director": "^1.2.8",
"jquery": "^2.2.1",
"md5": "^2.0.0",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-redux": "^4.4.0",
"react-router": "^2.0.0",
"react-router-active-component": "^4.0.0-rc.0",
"react-router-redux": "^4.0.0",
"redux": "^3.3.1",
"redux-devtools": "^3.1.1",
"redux-devtools-dock-monitor": "^1.0.1",
"redux-devtools-log-monitor": "^1.0.4",
"redux-thunk": "^2.0.1",
"vexflow": "^1.2.45"
},
"devDependencies": {
"babel-core": "^6.0.20",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.2.3",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-plugin-react": "^3.6.2",
"file-loader": "^0.8.5",
"node-sass": "^3.7.0",
"raw-loader": "^0.5.1",
"react-hot-loader": "^1.3.0",
"sass": "^0.5.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.12.1"
},
"scripts": {
"build": "webpack --config webpack.config.prod.js -p",
"start": "webpack-dev-server --d --hot --inline",
"lint": "eslint js",
"gae-deploy": "appcfg.py --oauth2_credential_file=~/.appcfg_oauth2_tokens update app.yaml",
"gae-deploy-prod": "appcfg.py --version=prod --oauth2_credential_file=~/.appcfg_oauth2_tokens update app.yaml",
"gae-deploy-qa": "appcfg.py --version=qa --oauth2_credential_file=~/.appcfg_oauth2_tokens update app.yaml",
"deploy": "npm run lint && npm run build && npm run gae-deploy && npm run gae-deploy-prod",
"deploy-qa": "npm run lint && npm run build && npm run gae-deploy && npm run gae-deploy-qa"
}
}