-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
50
51
{
"name": "chattr",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"test-client": "tape client/**/*.test.js | tap-spec",
"test-server": "tape server/**/*.test.js | tap-spec",
"test-watch-client": "nodemon --exec \"npm run test-client\"",
"test-watch-server": "nodemon --exec \"npm run test-server\"",
"build-client-js": "browserify client/src/client.js | uglifyjs > client/public/js/bundle.js",
"start-watchify": "watchify client/src/client.js -v -o \"uglifyjs > client/public/js/bundle.js\"",
"start-nodemon": "nodemon server/server.js",
"watch": "concurrently --timestamp-format \"HH:mm:ss\" --prefix \"{time} [{index}]\" --kill-others \"npm run start-watchify\" \"npm run start-nodemon\""
},
"author": "",
"license": "ISC",
"engines": {
"node": "6.11.1"
},
"dependencies": {
"animal-id": "0.0.1",
"bcryptjs": "^2.4.3",
"chance": "^1.0.11",
"compression": "^1.7.1",
"express": "^4.16.2",
"ioredis": "^3.1.4",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.4",
"mastodon-api": "^1.3.0",
"sanitize-html": "^1.14.1",
"socket.io": "^2.0.3"
},
"devDependencies": {
"anchorme": "^1.1.2",
"browserify": "^14.5.0",
"concurrently": "^3.5.0",
"jquery": "^3.2.1",
"jsdom": "^11.3.0",
"mock-socket": "^7.0.0",
"moment": "^2.19.1",
"mustache": "^2.3.0",
"nodemon": "^1.12.1",
"proxyquire": "^1.8.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0",
"uglify-es": "^3.1.5",
"watchify": "^3.9.0"
}
}