forked from scratchfoundation/scratch-gui
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 2.14 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
66
67
68
69
{
"name": "scratch-gui",
"version": "0.1.0",
"description": "GraphicaL User Interface for creating and running Scratch 3.0 projects",
"main": "./src/index.js",
"scripts": {
"build": "npm run clean && webpack --progress --colors --bail",
"clean": "rm -rf ./build && mkdir -p build",
"deploy": "touch build/.nojekyll && gh-pages -t -d build -m \"Build for $(git log --pretty=format:%H -n1)\"",
"lint": "eslint . --ext .js,.jsx",
"start": "webpack-dev-server",
"test": "npm run lint && npm run build"
},
"author": "Massachusetts Institute of Technology",
"license": "BSD-3-Clause",
"homepage": "https://github.com/LLK/scratch-gui#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/LLK/scratch-gui.git"
},
"peerDependencies": {
"react": "15.x.x",
"react-dom": "15.x.x"
},
"devDependencies": {
"autoprefixer": "6.7.6",
"babel-core": "6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "6.3.2",
"babel-plugin-transform-object-rest-spread": "6.22.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-react": "6.22.0",
"classnames": "2.2.5",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.26.1",
"eslint": "^3.16.1",
"eslint-config-scratch": "^3.0.0",
"eslint-plugin-react": "^6.10.0",
"gh-pages": "^0.12.0",
"html-webpack-plugin": "2.28.0",
"lodash.bindall": "4.4.0",
"lodash.defaultsdeep": "4.6.0",
"lodash.isequal": "4.5.0",
"lodash.omit": "4.5.0",
"lodash.pick": "4.4.0",
"minilog": "3.1.0",
"postcss-import": "9.1.0",
"postcss-loader": "1.3.2",
"postcss-simple-vars": "3.0.0",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-modal": "1.6.5",
"react-redux": "5.0.2",
"react-style-proptype": "2.0.1",
"redux": "3.6.0",
"redux-throttle": "0.1.1",
"scratch-audio": "latest",
"scratch-blocks": "latest",
"scratch-render": "latest",
"scratch-vm": "latest",
"style-loader": "0.13.1",
"svg-to-image": "1.1.3",
"svg-url-loader": "2.0.2",
"travis-after-all": "^1.4.4",
"webpack": "2.2.1",
"webpack-dev-server": "^2.4.1",
"xhr": "2.4.0"
}
}