-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 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
58
59
60
61
62
63
64
65
66
{
"name": "Programmarble",
"version": "1.0.0",
"description": "",
"author": "Alex Dytrych @SomeHats",
"main": "index.js",
"scripts": {
"clean": "rm -rf dist",
"build:webpack": "NODE_ENV=production webpack --config ./webpack.config.js",
"build": "npm run clean && npm run build:webpack",
"start": "webpack-dev-server",
"lint": "eslint src",
"test": "npm run lint"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-1": "^6.13.0",
"brfs": "^1.4.3",
"css-loader": "^0.25.0",
"eslint": "^3.6.0",
"eslint-config-airbnb": "^11.2.0",
"eslint-config-airbnb-base": "^7.1.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"expose-loader": "^0.7.1",
"express": "^4.14.0",
"extract-loader": "0.0.2",
"file-loader": "^0.9.0",
"ghooks": "^1.3.2",
"html-loader": "^0.4.4",
"json-loader": "^0.5.4",
"node-sass": "^3.10.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"transform-loader": "^0.2.3",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
},
"dependencies": {
"classnames": "^2.2.5",
"immutable": "^3.8.1",
"lodash": "^4.16.1",
"matter-js": "^0.10.0",
"pixi.js": "^3.0.11",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-immutable-proptypes": "^2.1.0",
"react-pixi": "^0.8.2",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-thunk": "^2.1.0"
},
"config": {
"ghooks": {
"pre-commit": "npm run test && npm run build && git add dist"
}
}
}