-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.44 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
{
"name": "recommend",
"version": "1.0.0",
"description": "a recommendation thing",
"main": "index.js",
"scripts": {
"start": "npm run build && node index.js",
"build": "cd client && next build",
"dev": "node index.js",
"test": "standard",
"precommit": "npm test",
"prepush": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joelwass/recommend.git"
},
"author": "Peter Squicciarini <stripedpajamas273@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/joelwass/recommend/issues"
},
"homepage": "https://github.com/joelwass/recommend#readme",
"dependencies": {
"@zeit/next-sass": "^0.1.1",
"bcrypt": "^1.0.3",
"cors": "^2.8.4",
"express": "^4.16.2",
"isomorphic-unfetch": "^2.0.0",
"js-cookie": "^2.2.0",
"mysql2": "^1.5.1",
"next": "^5.0.1-canary.7",
"next-redux-wrapper": "^1.0.0",
"node-fetch": "^2.0.0",
"node-sass": "^4.7.2",
"object-pluck": "0.0.3",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.1",
"react-select-fast-filter-options": "^0.2.3",
"react-transition-group": "^1.2.1",
"react-virtualized-select": "^3.1.3",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0",
"reselect": "^3.0.1",
"sequelize": "^4.32.2",
"ulid": "^2.3.0"
},
"devDependencies": {
"husky": "^0.14.3",
"redux-devtools-extension": "^2.13.2",
"standard": "^10.0.3"
}
}