-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "flux-lumines",
"version": "1.0.0",
"description": "JavaScript implementation of a classic PSP game Lumines, using React.js and Flux",
"main": "src/Lumines.js",
"repository": "https://github.com/tobice/flux-lumines",
"scripts": {
"dev": "./node_modules/webpack-dev-server/bin/webpack-dev-server.js --config ./webpack/dev.js --progress --colors --port 9090 --hot --inline"
},
"keywords": [
"react",
"flux",
"lumines"
],
"author": "Tobiáš Potoček",
"email": "[email protected]",
"license": "MIT",
"dependencies": {
"classnames": "^2.1.2",
"debug": "^2.1.3",
"flux": "^2.0.3",
"immutable": "^3.7.2",
"invariant": "^2.0.0",
"react": "^0.13.1",
"react-pure-render": "^1.0.1"
},
"devDependencies": {
"autoprefixer-loader": "^2.0.0",
"babel": "^4.0.1",
"babel-core": "^4.0.1",
"babel-eslint": "^3.1.23",
"babel-loader": "^4.0.0",
"css-loader": "^0.12.0",
"eslint": "^0.24.1",
"eslint-plugin-react": "^2.7.0",
"less-loader": "^2.2.0",
"react-hot-loader": "^1.2.5",
"style-loader": "^0.12.1",
"webpack": "^1.5.3",
"webpack-dev-server": "^1.8.0"
}
}