-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.14 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
{
"name": "BeepBoopBot",
"version": "1.0.0",
"description": "A fun way to learn programming concepts, Help BB Bot make his way home.",
"main": "index.js",
"engines": {
"node": "6.2.1"
},
"scripts": {
"start": "node server/index",
"dev-nm": "nodemon server/index",
"dev-wp": "cd client && webpack-dev-server --hot --inline",
"build": "cd client && webpack --progress --profile --colors",
"build:watch": "cd client && webpack --progress --profile --colors --watch",
"test": "cd client && babel-tape-runner test/*.js | tap-spec"
},
"author": "olwiba",
"license": "MIT",
"dependencies": {
"express": "^4.14.0",
"react": "^15.2.1",
"react-dom": "^15.2.1",
"redux": "^3.5.2"
},
"devDependencies": {
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-tape-runner": "^2.0.1",
"colors": "^1.1.2",
"enzyme": "^2.4.1",
"nodemon": "^1.10.0",
"react-addons-test-utils": "^15.2.1",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}