This repository was archived by the owner on Oct 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.37 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.37 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": "link-keeper",
"version": "1.0.0",
"description": "",
"private": true,
"proxy": "http://localhost:3001/",
"scripts": {
"start": "concurrently \"npm run server\" \"react-scripts start\"",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"db": "mongod --rest --httpinterface --dbpath ./database",
"dbexport": "mongodump -h localhost:27017 -d link-keeper -o ./backup",
"dbrestore": "mongorestore -h localhost:27017 -d link-keeper ./backup",
"server": "node ./app/server.js"
},
"author": "",
"license": "ISC",
"engines": {
"node": ">=6.9",
"npm": ">=4.0"
},
"devDependencies": {
"concurrently": "^3.1.0",
"enzyme": "^2.7.1",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"nock": "^9.0.9",
"react-addons-test-utils": "^15.4.2",
"react-scripts": "^0.8.4",
"redux-mock-store": "^1.2.2"
},
"dependencies": {
"body-parser": "^1.15.2",
"express": "^4.14.0",
"mongodb-short-id": "^0.3.2",
"mongoose": "^4.7.7",
"morgan": "^1.8.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-redux": "^5.0.1",
"react-router": "^3.0.1",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0"
}
}