-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.32 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
{
"name": "accounts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"registry": "https://registry.npmjs.org/",
"scripts": {
"format": "prettier --single-quote --no-semi --write 'src/js/**/*.js'",
"clean": "rm -rf dist",
"build/static": "cp -r src/public/* dist",
"build/js": "npm run format && browserify src/js/app.js -t babelify -t csjs-injectify -t [cssify --global] --outfile dist/bundle.js",
"build": "npm run clean && mkdir dist && npm run build/static && npm run build/js",
"build/docs": "npm run build && rm -rf docs && cp -R dist docs",
"watch": "nodemon -w src/js --exec 'npm run build/js'",
"server": "http-server dist",
"start/dev": "npm run build && concurrently --kill-others --raw 'livereload dist' 'npm run watch' 'npm run server'",
"start": "npm run server",
"precommit": "npm run build/docs && git add docs"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.3.3",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"bulma": "^0.4.0",
"choo": "^5.1.4",
"csjs": "^1.1.0",
"csjs-injectify": "^1.0.1",
"cssify": "^1.0.3",
"font-awesome": "^4.7.0",
"http-server": "^0.9.0",
"livereload": "^0.6.2",
"nodemon": "^1.11.0",
"prettier-standard": "^3.0.1"
}
}