-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.71 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": "theory-drills",
"version": "1.0.0",
"description": "React/Webpack boilerplate",
"main": "server.js",
"scripts": {
"dev": "webpack-dev-server --config webpack.config.js --watch --colors",
"build": "rm -rf dist/ && NODE_ENV=production webpack --colors --profile",
"test": "mocha --compilers js:babel-core/register",
"start": "PORT=3002 pm2 start -n theory-drills ./server.js",
"stop": "pm2 delete theory-drills"
},
"author": "Greg Pascale ([email protected])",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-transform-object-rest-spread": "^6.19.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.25.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"mocha": "^3.2.0",
"node-sass": "^3.11.2",
"react-dom": "^15.3.2",
"react-hot-loader": "^3.0.0-beta.6",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"underscore": "^1.8.3",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"chance": "^1.0.6",
"chancejs": "0.0.8",
"material-ui": "^0.17.0",
"music-theory-questions": "0.0.1",
"react": "^15.3.2",
"react-redux": "^5.0.3",
"react-router": "^3.0.0",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.6.0",
"text-to-speech-js": "^1.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gpascale/boilerplate.git"
},
"bugs": {
"url": "https://github.com/gpascale/boilerplate/issues"
},
"homepage": "https://github.com/gpascale/boilerplate#readme"
}