forked from folksy-squid/Picky-Notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.94 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "picky-notes",
"version": "1.0.0",
"description": "pick your notes",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"test": "npm run test:client && npm run test:server",
"test:server": "mocha --recursive specs/Server/",
"test:client": "mocha specs/Client/helpers.js specs/Client/ComponentSpec.js",
"test:client:watch": "npm run test:client -- --watch",
"client": "export NODE_ENV='client' && node server/server.js --ignore components",
"dev": "export NODE_ENV='dev' && (nodemon server/server.js & webpack --watch)",
"prettier": "prettier '**/*.{js,jsx,json,yml}'",
"prettier:write": "npm run prettier -- --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/folksy-squid/Picky-Notes.git"
},
"author": "Derek Liu, Kunal Rathi, Marco Chan, Sean Ng",
"license": "MIT",
"bugs": {
"url": "https://github.com/folksy-squid/Picky-Notes/issues"
},
"homepage": "https://github.com/folksy-squid/Picky-Notes#readme",
"devDependencies": {
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"chai": "^3.5.0",
"css-loader": "^0.25.0",
"enzyme": "^2.4.1",
"ioredis-mock": "^2.1.0",
"jquery": "^3.1.1",
"jsdom": "^9.5.0",
"mocha": "^3.1.0",
"nodemon": "^1.10.2",
"react-addons-test-utils": "^15.3.2",
"react-hot-loader": "^1.3.0",
"sinon": "^1.17.6",
"socket-io-mock": "^1.0.1",
"socket.io-client": "^1.4.8",
"style-loader": "^0.13.1",
"supertest": "^2.0.0",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.2",
"webpack-hot-middleware": "^2.12.2",
"xmlhttprequest": "^1.8.0"
},
"dependencies": {
"aws-sdk": "^2.6.6",
"body-parser": "^1.15.2",
"compression": "^1.6.2",
"express": "^4.14.0",
"express-session": "^1.17.3",
"ffmpeg": "^0.0.4",
"fluent-ffmpeg": "^2.1.0",
"forever": "^0.15.2",
"imports-loader": "^0.6.5",
"ioredis": "^2.4.0",
"js-md5": "^0.4.1",
"json-loader": "^0.5.4",
"masonry-layout": "^4.1.1",
"morgan": "^1.7.0",
"passport": "^0.6.0",
"passport-facebook": "^3.0.0",
"path": "^0.12.7",
"pg": "^8.7.3",
"pg-hstore": "^2.3.4",
"prettier": "^2.6.2",
"react": "^15.3.2",
"react-bootstrap": "^0.30.5",
"react-dom": "^15.3.2",
"react-infinite": "^0.10.0",
"react-joyride": "^1.5.0",
"react-markdown": "^2.4.2",
"react-masonry-component": "^4.2.1",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-bootstrap": "^0.23.1",
"react-router-redux": "^4.0.6",
"react-wavesurfer": "^0.8.1",
"redis": "^2.6.2",
"redux": "^3.6.0",
"sequelize": "^6.20.1",
"socket.io": "^1.4.8",
"socket.io-stream": "^0.9.1",
"wavesurfer.js": "^1.2.1"
}
}