This repository has been archived by the owner on Feb 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
89 lines (89 loc) · 2.57 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
{
"name": "star-orgs",
"private": true,
"version": "0.0.0",
"description": "Azure Active Directory Organization Chart Viewer",
"main": "server.js",
"keywords": [
"azure",
"active directory",
"ad"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ritterim/star-orgs"
},
"scripts": {
"audit": "nsp check package",
"build": "npm run build-client-production && npm run build-server",
"build-client": "webpack --mode development",
"build-client-production": "webpack --mode production",
"build-server": "babel src/server -d dist",
"build-server-and-start-server": "npm run build-server && node ./server.js",
"check": "npm run audit && npm outdated --depth 0",
"clean:keep-env": "git clean -xdf --exclude .env",
"coverage": "jest --coverage --forceExit",
"lint": "eslint src tests",
"start": "node server.js",
"start:watch": "concurrently \"npm run watch-client\" \"npm run watch-server\"",
"test": "jest --forceExit",
"test:watch": "jest --watch",
"validate": "npm run lint && npm test",
"watch-client": "webpack --mode development --watch",
"watch-server": "nodemon --exec npm run build-server-and-start-server --watch src/server --watch .env"
},
"author": {
"name": "Ritter Insurance Marketing"
},
"pre-commit": [
"validate"
],
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"cache-storage": "^2.0.1",
"chance": "^1.0.13",
"compression": "^1.7.2",
"css-loader": "^0.28.11",
"d3-force": "^1.1.0",
"d3-scale": "^2.0.0",
"d3-selection": "^1.3.0",
"d3-svg-legend": "^2.25.6",
"d3-transition": "^1.1.1",
"dotenv": "^5.0.1",
"eventemitter3": "^3.0.1",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"md5": "^2.2.1",
"node-sass": "^4.12.0",
"randgen": "^0.1.0",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.14",
"whatwg-fetch": "^2.0.4",
"winston": "^2.4.1"
},
"devDependencies": {
"concurrently": "^3.5.1",
"eslint": "^4.19.1",
"fetch-mock": "^6.3.0",
"jest": "^22.4.3",
"node-fetch": "^2.1.2",
"nodemon": "^1.17.3",
"nsp": "^3.2.1",
"pre-commit": "^1.2.2",
"supertest": "^3.0.0"
},
"engines": {
"node": ">=6 <13",
"npm": ">=3"
}
}