forked from energywebfoundation/origin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.68 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
{
"private": true,
"name": "@energyweb/origin-ui",
"version": "1.5.1",
"scripts": {
"build": "yarn config-env && node --max-old-space-size=8192 ./node_modules/.bin/webpack --config webpack/prod.config.js",
"build:ts": "tsc -b tsconfig.build.json --verbose --pretty",
"build:full": "yarn config-env && webpack --config webpack/prod.config.js",
"build:container:canary": "make build-canary push",
"build:container:latest": "make build-latest push",
"config-env": "bash env.sh",
"start": "yarn config-env && cross-env NODE_OPTIONS=\"--max_old_space_size=8192\" webpack-dev-server --config webpack/dev.config.js --watch",
"start-all": "yarn start",
"lint": "eslint \"src/**/*{.ts,.tsx}\"",
"lint-fix": "eslint \"src/**/*{.ts,.tsx}\" --fix",
"precommit": "lint-staged",
"prettier": "prettier --write --config-precedence file-override './src/**/*'",
"clean": "shx rm -rf dist"
},
"dependencies": {
"@energyweb/origin-ui-core": "0.1.1",
"extract-text-webpack-plugin": "4.0.0-beta.0",
"file-loader": "5.0.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"ts-loader": "6.2.1",
"url-loader": "3.0.0",
"webpack": "4.41.5"
},
"devDependencies": {
"@types/react": "16.9.19",
"@types/react-dom": "16.9.5",
"copy-webpack-plugin": "5.1.1",
"css-loader": "3.4.2",
"eslint-plugin-react": "7.18.0",
"fork-ts-checker-webpack-plugin": "4.0.3",
"html-webpack-plugin": "3.2.0",
"node-sass": "4.13.1",
"sass-loader": "8.0.2",
"source-map-loader": "0.2.4",
"style-loader": "1.1.3",
"ts-jest": "25.2.0",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.10.3",
"webpack-merge": "4.2.2"
}
}