-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.41 KB
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
{
"name": "inventory-api",
"version": "0.0.1",
"description": "A simple API layer to model an inventory",
"main": "server.js",
"engines": {
"node": "~5.6"
},
"scripts": {
"start": "node server",
"serve": "DEV=true nodemon server --ignore public/ --ignore store/",
"dev": "webpack-dev-server --inline",
"launch": "open 'http://localhost:3000'",
"test": "mocha './tests/**/*.spec.js' --compilers js:babel-core/register",
"testwatch": "clear && mocha './tests/**/*.spec.js' --compilers js:babel-core/register --watch",
"deploy": "NODE_ENV=production webpack -p --config webpack.prod.config.js"
},
"author": "jbkly",
"license": "MIT",
"dependencies": {
"classnames": "^2.2.3",
"hapi": "^13.0.0",
"hapi-swagger": "^4.2.1",
"humanize-duration": "^3.6.1",
"inert": "^3.2.0",
"jquery": "^2.2.1",
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-timeago": "^2.2.1",
"toastr": "^2.1.2",
"vision": "^4.0.1"
},
"devDependencies": {
"babel-core": "^6.5.2",
"babel-loader": "^6.2.3",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"expect": "^1.14.0",
"expect-jsx": "^2.3.0",
"jsdom": "^8.0.4",
"mocha": "^2.4.5",
"mocha-jsdom": "^1.1.0",
"nodemon": "^1.9.1",
"open": "0.0.5",
"react-addons-test-utils": "^0.14.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
}
}