-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.47 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
{
"name": "@julmot/form-components",
"version": "1.1.4",
"description": "Custom Form Components. Without Any Framework. Accessible.",
"keywords": [
"form",
"components",
"frontend"
],
"repository": "julmot/form-components",
"bugs": {
"url": "https://github.com/julmot/form-components/issues"
},
"author": {
"name": "Julian Kühnel",
"url": "https://github.com/julmot"
},
"homepage": "https://github.com/julmot/form-components",
"license": "MIT",
"fractal": {
"main": "build/fractal.js"
},
"main": "build/fractal.js",
"dependencies": {
"bowser": "^2.11.0",
"moveto": "^1.8.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@frctl/fractal": "^1.5.2",
"@frctl/handlebars": "^1.2.5",
"@frctl/mandelbrot": "^1.7.0",
"@julmot/git-branch-deploy": "^1.0.1",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.2.2",
"concurrently": "^5.3.0",
"css-loader": "^4.3.0",
"del-cli": "^3.0.1",
"eslint": "^7.18.0",
"eslint-loader": "^4.0.2",
"file-loader": "^6.2.0",
"fs-extra": "^9.1.0",
"glob": "^7.1.6",
"grunt": "^1.3.0",
"grunt-replace": "^1.0.1",
"grunt-webfont": "^1.7.2",
"handlebars": "^4.7.6",
"jit-grunt": "^0.10.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"normalize.css": "^8.0.1",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-loader": "^3.0.0",
"resolve-url-loader": "^3.1.2",
"sass-loader": "^9.0.3",
"slash": "^3.0.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.1",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"scripts": {
"fractal:dev": "fractal start --sync",
"fractal:prod": "fractal build",
"webpack:dev": "webpack --mode development --config build/webpack.config.js",
"webpack:dev-watch": "webpack --mode development --watch --config build/webpack.config.js",
"webpack:prod": "webpack -p --config build/webpack.config.js",
"font": "grunt generate-icon-font --gruntfile build/grunt.config.js --base ./",
"dev": "npm update && del-cli dist/**/* && concurrently --kill-others \"npm run fractal:dev\" \"npm run webpack:dev-watch\"",
"build": "npm install && del-cli dist/**/* && npm run font && npm run webpack:dev && npm run webpack:prod && npm run fractal:prod",
"deploy": "node build/deploy.js",
"test": "echo \"Error: no test specified\" && exit 1"
}
}