forked from oligriffiths/emberconf-broccoli-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.5 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
{
"name": "emberconf-broccoli-workshop",
"version": "1.0.0",
"description": "Broccoli workshop for Emberconf boilerplate",
"main": "index.js",
"scripts": {
"build": "node $NODE_DEBUG_OPTION $(which broccoli) build --overwrite",
"build-prod": "node $NODE_DEBUG_OPTION $(which broccoli) build --overwrite --prod",
"serve": "node $NODE_DEBUG_OPTION $(which broccoli) serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oligriffiths/emberconf-broccoli-workshop.git"
},
"keywords": [
"broccoli",
"emberconf"
],
"author": "Oli Griffiths",
"license": "MIT",
"bugs": {
"url": "https://github.com/oligriffiths/emberconf-broccoli-workshop/issues"
},
"homepage": "https://github.com/oligriffiths/emberconf-broccoli-workshop#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"broccoli": "^2.1.0",
"broccoli-asset-rev": "^3.0.0",
"broccoli-babel-transpiler": "^7.2.0",
"broccoli-clean-css": "^2.0.1",
"broccoli-cli": "^1.0.0",
"broccoli-funnel": "^2.0.2",
"broccoli-lint-eslint": "^5.0.0",
"broccoli-livereload": "^1.4.0",
"broccoli-merge-trees": "^3.0.2",
"broccoli-rollup": "^2.1.1",
"broccoli-sass-lint": "^1.1.2",
"broccoli-sass-source-maps": "^4.0.0",
"broccoli-stew": "^2.0.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-uglify": "^3.0.0",
"sass": "^1.17.2"
}
}