-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
43 lines (43 loc) · 1.3 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
{
"name": "simply-evil-js",
"version": "2.3.0",
"description": "Just a simple npm based build system starter template",
"author": "Ian Hofmann-Hicks (evil)",
"license": "ISC",
"scripts": {
"zap": "rm -rf .git && git init && git add . && git commit -m 'Initial Commit'",
"test": "npm run lint",
"lint": "eslint src/js",
"html": "pug src/pages -o dev -w",
"bundle": "webpack-dev-server",
"serve": "browser-sync start --config bs.config.js",
"prebuild": "rm -Rf dist && mkdir -p dist",
"build": "webpack",
"prestart": "rm -Rf dev && mkdir -p dev",
"start": "npm-run-all --parallel html bundle"
},
"devDependencies": {
"babel-core": "^6.2.4",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.2.4",
"babel-preset-es2015": "^6.2.4",
"browser-sync": "^2.7.3",
"browser-sync-webpack-plugin": "^1.1.4",
"css-loader": "^0.28.0",
"eslint": "^4.8.0",
"extract-text-webpack-plugin": "^3.0.1",
"less": "^2.5.0",
"less-loader": "^4.0.3",
"less-plugin-autoprefix": "^1.4.2",
"node-libs-browser": "^2.0.0",
"npm-run-all": "^4.0.2",
"pug-cli": "^1.0.0-alpha1",
"style-loader": "^0.19.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.4.4",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"ramda": "^0.24.1"
}
}