-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.23 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": "haxfred-link-app",
"version": "0.0.0",
"description": "---",
"main": "index.js",
"scripts": {
"start": "npm run build && node index.js",
"dev": "npm run build:watch & node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "standard | snazzy",
"build": "npm run clean && browserify src/js/app.js -o dist/js/app.js && cp src/css/* dist/css/",
"build:production": "npm run clean && browserify src/js/app.js | uglifyjs > dist/js/app.js",
"build:watch": "watchify src/js/app.js -o dist/js/app.js",
"clean": "rm -rf dist/js dist/css && mkdir -p dist/css dist/js"
},
"browserify": {
"transform": [
"babelify"
]
},
"author": "haxiom",
"license": "ISC",
"dependencies": {
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"body-parser": "^1.9.2",
"browserify": "^13.0.0",
"express": "^4.10.1",
"lodash": "^4.6.1",
"marked": "^0.3.5",
"moment": "^2.12.0",
"morgan": "^1.4.1",
"react": "^0.14.7",
"react-dom": "^0.14.7"
},
"devDependencies": {
"snazzy": "^3.0.0",
"standard": "^6.0.8",
"watchify": "^3.7.0"
},
"standard": {
"globals": [
"fetch"
]
}
}