-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.59 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
{
"name": "youthweb-styleguide",
"version": "1.0.0-alpha.2",
"description": "The Styleguide for Youthweb.net",
"private": true,
"main": "index.js",
"scripts": {
"build": "webpack --config=webpack.config.js && php core/console --generate",
"server": "webpack --config=webpack.config.js && php core/console --server",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon empty.js"
},
"repository": {
"type": "git",
"url": "git://github.com/youthweb/styleguide.git"
},
"keywords": [
"youthweb",
"styleguide",
"patternlab"
],
"author": "Youthweb e.V.",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/youthweb/styleguide/issues"
},
"homepage": "https://github.com/youthweb/styleguide#readme",
"dependencies": {
"@fortawesome/fontawesome-free-webfonts": "^1.0.9",
"bootstrap": "^4.2.1",
"file-loader": "^1.1.11",
"jquery": "^3.3.1",
"popper.js": "^1.14.7",
"url-loader": "^1.1.2"
},
"devDependencies": {
"css-loader": "^0.28.11",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.9",
"postcss-loader": "^2.1.6",
"precss": "^3.1.2",
"sass-loader": "^6.0.7",
"style-loader": "^0.20.3",
"webpack": "^4.29.1",
"webpack-cli": "^3.2.1"
},
"nodemonConfig": {
"watch": [
"source/*"
],
"ignore": [
"source/dist/*",
"source/public/*",
"docs/*"
],
"delay": "500",
"ext": "*",
"events": {
"start": "webpack --config=webpack.config.js && php core/console --generate"
}
}
}