-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.66 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "snapshot-project",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "jest",
"watch": "jest --watch",
"coverage": "jest --coverage",
"start": "nodemon ./server.js",
"build-react": "webpack --mode development",
"start-react": "webpack-dev-server --mode development --open --port 8000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BalenD/snapshot-project.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/BalenD/snapshot-project/issues"
},
"homepage": "https://github.com/BalenD/snapshot-project#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-react": "^7.10.0",
"faker": "^4.1.0",
"html-webpack-harddisk-plugin": "^0.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.5.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.3",
"sinon": "^6.1.4",
"style-loader": "^0.21.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.4"
},
"dependencies": {
"bcrypt": "^3.0.0",
"body-parser": "^1.18.3",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.2.12",
"morgan": "^1.9.0",
"react": "^16.4.1",
"react-dom": "^16.4.1"
}
}