-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.59 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
48
49
50
51
{
"name": "2123.io",
"version": "2.2.0",
"description": "2123.io",
"main": "app/index/index.html",
"scripts": {
"start": "webpack-dev-server --config webpack.config.dev.js",
"watch": "webpack --config webpack.config.dev.js --watch",
"build": "npm run clean && webpack --config webpack.config.dev.js",
"build:prod": "npm run clean:prod && webpack --config webpack.config.prod.js",
"build:local": "webpack --config webpack.config.local.js",
"watch:local": "webpack --config webpack.config.local.js --watch",
"clean": "rm -rf dist",
"clean:prod": "rm -rf dist-prod",
"precommit": "lint-staged",
"lint": "eslint ./app && stylint ./app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/21-23/2123.io.git"
},
"author": "21-23",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/21-23/2123.io/issues"
},
"homepage": "https://github.com/21-23/2123.io#readme",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.4",
"eslint": "^4.4.1",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^0.11.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"lint-staged": "^4.0.3",
"resolve-url-loader": "^2.1.0",
"style-loader": "^0.18.2",
"stylint": "^1.5.9",
"stylint-loader": "^1.0.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.1",
"webpack": "^3.5.2",
"webpack-dev-server": "^2.7.1",
"webpack-merge": "^4.1.0",
"webpack-notifier": "^1.5.0"
}
}