-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.8 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
{
"name": "pixel-sprite-generator",
"version": "1.0.0",
"description": "Generate pixel sprites",
"main": "src/index.js",
"scripts": {
"start": "nodemon --exec babel-node server.js --ignore src",
"lint": "eslint .",
"deploy": "npm run build && gh-pages -d demo",
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./demo/bundle.js",
"compile": "NODE_ENV=production webpack --config ./webpack.config.js --progress",
"compile:dev": "NODE_ENV=development webpack --config ./webpack.config.js --progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArtBIT/pixel-sprite-generator.git"
},
"keywords": ["pixel", "sprite", "generator", "javascript"],
"author": "Djordje Ungar",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArtBIT/pixel-sprite-generator/issues"
},
"homepage": "https://github.com/ArtBIT/pixel-sprite-generator#readme",
"dependencies": {
"bulma": "^0.7.1",
"random-js": "^1.0.8",
"react": "^16.4.2",
"react-dom": "^16.4.2"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^1.0.0",
"eslint": "^4.19.1",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-react": "^7.11.1",
"express": "^4.16.3",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"nodemon": "^1.18.3",
"prop-types": "^15.6.2",
"style-loader": "^0.22.1",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-middleware": "^3.1.3",
"webpack-livereload-plugin": "^2.1.1"
}
}