forked from ds-wizard/engine-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.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
{
"name": "engine-frontend",
"version": "3.4.0",
"repository": "https://github.com/ds-wizard/engine-frontend",
"license": "Apache-2.0",
"scripts": {
"build": "npm run build:registry && npm run build:wizard",
"build:registry": "COMPONENT=registry ./scripts/build.sh",
"build:wizard": "COMPONENT=wizard ./scripts/build.sh",
"clean": "rm -rf dist",
"start": "npm run start:wizard",
"start:registry": "COMPONENT=registry webpack serve",
"start:wizard": "COMPONENT=wizard webpack serve",
"test": "npm run test:elm && npm run test:registry:icon-set && npm run test:registry:locale && npm run test:shared:icon-set && npm run test:shared:locale && npm run test:wizard:icon-set && npm run test:wizard:locale",
"test:elm": "elm-test && elm-analyse",
"test:registry": "npm run test:elm && npm run test:registry:icon-set && npm run test:registry:locale",
"test:registry:icon-set": "COMPONENT=registry node scripts/test-icon-set.js",
"test:registry:locale": "COMPONENT=registry node scripts/test-locale.js",
"test:shared:icon-set": "COMPONENT=shared node scripts/test-locale.js",
"test:shared:locale": "COMPONENT=shared node scripts/test-locale.js",
"test:wizard": "npm run test:elm && npm run test:wizard:icon-set && npm run test:wizard:locale",
"test:wizard:icon-set": "COMPONENT=wizard node scripts/test-icon-set.js",
"test:wizard:locale": "COMPONENT=wizard node scripts/test-locale.js",
"extract-locale": "npm run extract-locale:registry && npm run extract-locale:shared && npm run extract-locale:wizard",
"extract-locale:registry": "mkdir -p locale && COMPONENT=registry node scripts/extract-locale.js",
"extract-locale:shared": "mkdir -p locale && COMPONENT=shared node scripts/extract-locale.js",
"extract-locale:wizard": "mkdir -p locale && COMPONENT=wizard node scripts/extract-locale.js",
"apply-locale": "npm run apply-locale:registry && npm run apply-locale:shared && npm run apply-locale:wizard",
"apply-locale:registry": "COMPONENT=registry node scripts/apply-locale.js",
"apply-locale:shared": "COMPONENT=shared node scripts/apply-locale.js",
"apply-locale:wizard": "COMPONENT=wizard node scripts/apply-locale.js"
},
"devDependencies": {
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.4.0",
"css-minimizer-webpack-plugin": "^3.1.1",
"elm": "^0.19.1-5",
"elm-analyse": "^0.16.5",
"elm-test": "^0.19.1-revision7",
"elm-webpack-loader": "^8.0.0",
"fast-csv": "^4.3.6",
"html-webpack-plugin": "^5.3.2",
"lodash": "^4.17.21",
"mini-css-extract-plugin": "^2.4.2",
"node-sass": "^6.0.1",
"sass-loader": "^12.1.0",
"terser-webpack-plugin": "^5.2.4",
"uglify-js": "^3.14.2",
"webpack": "^5.58.1",
"webpack-cli": "^4.9.0",
"webpack-dev-server": "^4.3.1"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"axios": "^0.22.0",
"axios-retry": "^3.2.0",
"bootstrap": "^4.6.0",
"chart.js": "^2.9.4"
}
}