-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.95 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
{
"name": "chartviewer",
"version": "2.0.2",
"author": "Nick Nifadeff for Nomura Securities, Inc.",
"description": "Nomura ChartViewer HTML Prototype",
"private": true,
"license": "UNLICENSED",
"devDependencies": {
"concurrently": "^4.1.0",
"css-loader": "^2.0.0",
"file-loader": "^2.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.2",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.10.0",
"nodemon": "^1.18.7",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"sass-loader": "^7.1.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"scripts": {
"start": "concurrently \"npm run start:server\" \"npm run start:client\"",
"start:server": "nodemon ./src/server/index.js",
"start:client": "./node_modules/.bin/webpack-dev-server --config ./src/config/webpack.config.js",
"build": "webpack --progress --config src/config/webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"bootstrap-colorselector": "^0.1.0",
"bootstrap-sass": "^3.3.6",
"bootstrap-touchspin": "^4.2.5",
"bootstrap_dropdowns_enhancement": "^3.1.2",
"breakpoint-sass": "^2.6.1",
"cors": "^2.8.5",
"export-csv": "^1.0.1",
"express": "^4.16.4",
"finderjs": "^1.0.0",
"font-awesome": "^4.5.0",
"highcharts": "^7.2.0",
"highlight.js": "^9.7.0",
"i18next": "^12.1.0",
"i18next-localstorage-cache": "^1.1.1",
"i18next-xhr-backend": "^1.1.0",
"jquery": "^3.4.1",
"jquery-i18next": "^1.0.0",
"jquery-ui": "^1.12.1",
"jspdf": "^1.2.61",
"jstree": "^3.3.3",
"messageformat": "^2.0.4",
"moment": "^2.22.2",
"numeral": "^2.0.6",
"raphael": "^2.2.7",
"slickgrid": "^2.4.13",
"split.js": "^1.5.10",
"velocity-animate": "^1.2.3"
}
}