-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 988 Bytes
/
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
{
"name": "web-caching-presentation",
"version": "0.0.1",
"description": "Presentation on web caching for prod-dev conference 2015",
"main": "dist/app.js",
"scripts": {
"prebuild": "rimraf dist && mkdir dist",
"build:js": "browserify -t reactify ./src/app.js > ./dist/app.js",
"build:css": "node-sass ./src/app.scss ./dist/app.css",
"build:images": "cpy ./src/images/* ./dist/images",
"build:html": "cpy ./src/*.html ./dist",
"build": "npm run build:js && npm run build:css && npm run build:html && npm run build:images",
"test": "eslint src && npm run build"
},
"author": "Dave Lockhart",
"license": "Apache-2.0",
"private": true,
"devDependencies": {
"browserify": "^12.0.1",
"cpy": "^3.4.1",
"eslint": "^1.8.0",
"eslint-config-brightspace": "0.0.3",
"eslint-plugin-react": "^3.6.3",
"node-sass": "^3.4.1",
"react": "^0.14.1",
"react-dom": "^0.14.1",
"reactify": "^1.1.1",
"rimraf": "^2.4.3"
}
}