-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "base-project",
"version": "1.0.0",
"description": "A quick way to start a project with WordPress using Docker.",
"repository": {
"type": "git",
"url": "[email protected]:aztecwebteam/base-project.git"
},
"author": "Aztec Online Solutions <[email protected]>",
"license": "GPL-2.0",
"scripts": {
"dev": "webpack --watch",
"build": "webpack --optimize-minimize",
"lint:stylus": "stylint ./app/assets/stylus/style.styl",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.7",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"jshint": "^2.9.5",
"jshint-loader": "^0.8.4",
"style-loader": "^0.19.0",
"stylint": "^1.5.9",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"url-loader": "^0.6.2",
"webpack": "^3.10.0"
},
"dependencies": {
"jquery": "^1.12.4",
"nib": "^1.1.2",
"stylint-loader": "^1.0.0"
}
}