-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 2.31 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": "spacing-quiz",
"version": "1.0.0",
"description": "An app that teaches a foreign laguage using spaced repetition",
"main": "js/index.jsx",
"scripts": {
"mkdir": "mkdir -p build",
"build": "npm run clean && npm run mkdir && npm run build:html && npm run build:imgs && npm run build:css && npm run build:js",
"build:prod": "npm run clean && npm run mkdir && npm run build:html && npm run build:imgs && npm run build:css && npm run build:js:prod",
"watch": "npm run watch:html & npm run watch:css & npm run watch:js",
"clean": "rm -rf build",
"build:html": "npm run clean:html && cp index.html build/",
"build:imgs": "cp -R images/ build/images",
"watch:html": "npm run build:html && chokidar index.html -c 'npm run build:html'",
"clean:html": "rm -f build/index.html",
"build:css": "npm run clean:css && cp style.css build/",
"watch:css": "npm run build:css && chokidar style.css -c 'npm run build:css'",
"clean:css": "rm -f build/style.css",
"build:js": "npm run clean:js && webpack",
"build:js:prod": "webpack -p --define process.env.NODE_ENV='\"production\"'",
"watch:js": "npm run build:js && webpack --watch",
"clean:js": "rm -f build/$npm_package_name.$npm_package_version.js build/$npm_package_name.$npm_package_version.js.map",
"serve-front": "webpack-dev-server",
"seedDB": "node database/seed.js"
},
"engines": {
"node": "6.2.0"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.9.1",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"chokidar": "^1.6.0",
"webpack": "^1.13.1"
},
"dependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"isomorphic-fetch": "^2.2.1",
"material-ui": "^0.15.1",
"mongodb": "^2.2.5",
"mongoose": "^4.5.2",
"passport": "^0.3.2",
"passport-google-oauth": "^1.0.0",
"passport-http-bearer": "^1.0.1",
"react": "^15.1.0",
"react-addons-update": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.5.1",
"react-tap-event-plugin": "^1.0.0",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
}
}