-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.56 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
{
"name": "echo",
"version": "1.0.0",
"description": "Anna Freud happy memory app",
"main": "index.js",
"scripts": {
"start": "node src/server/app.js",
"devStart": "nodemon src/server/app.js",
"postinstall": "browserify src/client/main.js -o public/bundle.js -t [ babelify --presets [ es2015 ] ]",
"test": "node tests/src/client",
"build": "browserify src/client/main.js -o public/bundle.js -t [ babelify --presets [ es2015 ] ] && sw-precache --config=sw-precache-config.js",
"watch": "watchify src/client/main.js -o public/bundle.js -t [ babelify --presets [ es2015 ] ] && sw-precache --config=sw-precache-config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pbywater/echo.git"
},
"author": "pbywater, ConchobarMacNessa, joeylouise",
"license": "ISC",
"bugs": {
"url": "https://github.com/pbywater/echo/issues"
},
"homepage": "https://github.com/pbywater/echo#readme",
"dependencies": {
"aws-sdk": "^2.86.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"bcrypt": "^1.0.2",
"body-parser": "^1.17.2",
"browserify": "^14.4.0",
"bunyan": "^1.8.10",
"cookie-session": "^2.0.0-beta.2",
"cuid": "^1.3.8",
"env2": "^2.2.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.6.0",
"express": "^4.15.3",
"nodemailer": "^4.0.1",
"pg": "^6.4.0",
"sw-precache": "^5.2.0"
},
"devDependencies": {
"nodemon": "^1.11.0",
"tape": "^4.7.0",
"tap-spec": "^4.1.1",
"watchify": "^3.9.0"
}
}