-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 1.4 KB
/
package.json
File metadata and controls
executable file
·43 lines (43 loc) · 1.4 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
{
"name": "kuna-chart-header",
"private": true,
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run webpack",
"build:prod": "npm run clean && npm run webpack:prod",
"build:lib": "npm run clean:lib && npm run webpack:lib",
"webpack": "webpack-cli --progress",
"webpack:prod": "NODE_ENV=production webpack-cli --progress",
"webpack:lib": "NODE_ENV=production MODE=library webpack-cli --progress",
"webpack:watch": "webpack-cli --progress --watch",
"watch": "rollup -cw",
"clean": "rm -rf ./dist",
"clean:lib": "rm -rf ./lib"
},
"dependencies": {
"@types/pusher-js": "4.2.2",
"bignumber.js": "9.0.0",
"classnames": "2.2.6",
"mobx": "5.11.0",
"promise-polyfill": "6.0.2",
"tslib": "1.7.1"
},
"devDependencies": {
"@types/chrome": "0.0.86",
"@types/classnames": "2.2.9",
"@types/numeral": "0.0.25",
"@types/recompose": "0.30.6",
"autoprefixer": "9.6.1",
"awesome-typescript-loader": "5.2.1",
"optimize-css-assets-webpack-plugin": "5.0.3",
"postcss-clean": "1.1.0",
"shx": "0.3.2",
"typescript": "3.5.3",
"uglifyjs-webpack-plugin": "2.1.3",
"webpack": "4.35.3",
"webpack-cli": "3.3.5"
},
"resolutions": {
"@types/loader-utils": "1.1.3"
}
}