-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1018 Bytes
/
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
{
"name": "ArkanoidJS",
"version": "0.1.0",
"main": "src/index.js",
"scripts": {
"start": "webpack-dev-server --host 0.0.0.0 --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"lint": "eslint src/**/*.js webpack.**.js",
"lint:fix": "eslint --fix src/**/*.js webpack.**.js",
"test": "npm run lint"
},
"author": "Sebastian Limbach",
"license": "MIT",
"private": true,
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.17",
"css-loader": "^0.28.7",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.5",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.0.0-beta.3",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.2",
"webpack-merge": "^4.1.0"
}
}