-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.28 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.28 KB
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
{
"name": "todo-plus",
"version": "0.0.1",
"description": "Yet Another Todo app, this time with ADTs",
"author": "Ian Hofmann-Hicks (evilsoft@aol.com)",
"license": "ISC",
"scripts": {
"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": "rimraf dist && mkdirp dist",
"build": "webpack",
"prestart": "rimraf dev && mkdirp dev",
"start": "npm-run-all --parallel html bundle",
"setup": "rm -Rf node_modules && yarn install --pure-lockfile"
},
"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",
"mkdirp": "^0.5.1",
"node-libs-browser": "^2.0.0",
"npm-run-all": "^4.0.2",
"pug-cli": "^1.0.0-alpha1",
"rimraf": "^2.6.2",
"style-loader": "^0.19.0",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.4.4",
"webpack-merge": "^4.1.0"
}
}