-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.76 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
{
"name": "license-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"prestart": "babel-node src/backend/buildScripts/startMessage.js",
"start": "npm-run-all --parallel open:src lint:watch test:watch",
"open:src": "babel-node src/backend/buildScripts/srcServer.js",
"lint": "esw webpack.config.* src buildScripts --color",
"lint:watch": "npm run lint -- --watch",
"reinit": "babel-node src/backend/sampleData/users.js && babel-node src/backend/sampleData/apartments.js",
"security-check": "nsp check",
"localtunnel": "lt --port 3000",
"share": "npm-run-all --parallel open:src localtunnel",
"run-test": "jest",
"test": "npm-run-all run-test lint",
"test:watch": "jest --watch",
"clean-dist": "rimraf ./dist && mkdir dist",
"prebuild": "npm-run-all clean-dist run-test lint",
"build": "babel-node src/backend/buildScripts/build.js",
"postbuild": "babel-node src/backend/buildScripts/distServer.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RostislavMitu/license-project.git"
},
"author": "Mitu Rostislav",
"license": "ISC",
"bugs": {
"url": "https://github.com/RostislavMitu/license-project/issues"
},
"homepage": "https://github.com/RostislavMitu/license-project#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"body-parser-graphql": "^1.0.0",
"compression": "^1.7.2",
"connect-flash": "^0.1.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-react": "^7.7.0",
"eslint-watch": "^3.1.3",
"html-webpack-plugin": "^3.0.7",
"jest": "^22.4.2",
"morgan": "^1.9.0",
"node-sass": "^4.8.3",
"npm-run-all": "^4.1.2",
"nsp": "^3.2.1",
"open": "0.0.5",
"path": "^0.12.7",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-dev-middleware": "^3.0.1"
},
"dependencies": {
"apollo-boost": "^0.1.3",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.3",
"date-fns": "^1.29.0",
"ejs": "^2.5.8",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"express-session": "^1.15.6",
"graphql": "^0.13.2",
"graphql-tag": "^2.8.0",
"mongoose": "^5.0.12",
"normalize-scss": "^7.0.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-apollo": "^2.1.3",
"react-day-picker": "^7.1.9",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"typi": "^3.1.2"
}
}