-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.01 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "hackathon",
"version": "1.4.3",
"description": "25sprout 1st hackathon",
"scripts": {
"lint:js": "eslint src/js --config .eslintrc.json",
"lint:css": "stylelint src/css/*.css src/css/**/*.css --config .stylelintrc.json",
"lint": "npm run lint:css && npm run lint:js",
"clean": "rm -rf build npm-debug.log",
"dev": "cross-env NODE_ENV=dev babel-node server.js",
"prebuild": "npm run clean",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.build.babel.js",
"postbuild": "cp -r ./src/static build",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "[email protected]:25sprout/1st-hackathon.git"
},
"keywords": [
"25sprout",
"Hackathon"
],
"author": "Eddie Wen <[email protected]> (http://eddiewen.me)",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^8.0.2",
"babel-loader": "^6.2.7",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.18.0",
"browser-sync": "^2.18.1",
"browser-sync-webpack-plugin": "^1.1.3",
"cross-env": "^3.1.3",
"css-loader": "^0.25.0",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"postcss": "^5.2.5",
"postcss-cssnext": "^2.8.0",
"postcss-loader": "^1.1.1",
"pug": "^2.0.0-beta6",
"pug-lint": "^2.4.0",
"pug-lint-loader": "^0.0.4",
"pug-loader": "^2.3.0",
"standard-version": "^4.0.0",
"style-loader": "^0.13.1",
"stylelint": "^7.9.0",
"stylelint-config-standard": "^16.0.0",
"stylelint-order": "^0.4.1",
"stylelint-webpack-plugin": "^0.7.0",
"svgo-loader": "^1.1.2",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.5"
},
"private": true,
"dependencies": {
"typewriting": "^1.2.7"
}
}