forked from pictograpi/draw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.06 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.06 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
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
66
67
68
69
{
"name": "pictograpi-draw",
"version": "1.0.0",
"description": "A drawing tool using Pictograpi.",
"main": "index.js",
"scripts": {
"_webpack": "webpack --config webpack.conf.js",
"_webpack-dev-server": "env DEVELOPMENT=true webpack-dev-server --config webpack.conf.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src/**/*.js",
"dev": "npm run _webpack-dev-server",
"build": "npm run _webpack",
"deploy": "npm run build && firebase deploy"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:pictograpi/draw.git"
},
"keywords": [
"draw",
"pictograpi",
"pictograph"
],
"author": "Adrián Gómez - http://adgllorente.com",
"license": "CC BY-NC-SA 4.0",
"homepage": "https://draw.pictograpi.com",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babili-webpack-plugin": "^0.1.2",
"clean-webpack-plugin": "^0.1.16",
"css-loader": "^0.28.4",
"dotenv-webpack": "^1.5.4",
"eslint": "^4.3.0",
"eslint-config-prettier": "^2.3.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-prettier": "^2.1.2",
"extract-loader": "^0.1.0",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"html-webpack-plugin": "^2.29.0",
"import-glob-loader": "^1.1.0",
"loglevel": "^1.4.1",
"node-sass": "^4.5.3",
"prettier": "^1.5.3",
"resolve-url-loader": "^2.1.0",
"sass-loader": "^6.0.6",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"webpack": "^3.3.0",
"webpack-dev-server": "^2.6.0"
},
"dependencies": {
"bulma": "^0.5.1",
"font-awesome": "^4.7.0",
"isomorphic-fetch": "^2.2.1",
"normalize.css": "^7.0.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router-dom": "^4.1.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0"
}
}