-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.18 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
{
"name": "spin-game",
"version": "1.0.0",
"main": "index.js",
"author": "matikrk <matikrk@gmail.com>",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server",
"build": "npm run prepareBuildFolder && webpack --config webpack.config.js",
"build:development": "npm run prepareBuildFolder && webpack --config webpack.config.js",
"test": "ava ./tests/**/*.js",
"lint": "eslint src/ tests/",
"prepareBuildFolder":"rimraf build && cpr ./img ./build/img && cpr ./rest ./build/rest ./build/rest && cpr ./index.html ./build/index.html"
},
"devDependencies": {
"autoprefixer": "^7.0.1",
"ava": "^0.19.1",
"babel-core": "^6.24.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.0",
"css-loader": "^0.28.1",
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-loader": "^1.6.3",
"eslint-plugin-import": "^2.2.0",
"extract-text-webpack-plugin": "^2.1.0",
"less": "^2.7.2",
"less-loader": "^4.0.2",
"postcss-loader": "^2.0.5",
"rimraf": "^2.6.1",
"style-loader": "^0.17.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2",
"cpr": "^2.0.2"
},
"dependencies": {
}
}