-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.87 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
70
71
{
"name": "revenge-webseed",
"version": "0.1.0",
"description": "Yet another revenge app",
"main": "src/client/index.js",
"repository": {
"type": "git",
"url": "https://github.com/buildo/revenge-webseed.git"
},
"author": "buildo",
"homepage": "https://github.com/buildo/revenge-webseed",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js src",
"lint-fix": "./node_modules/eslint/bin/eslint.js src --fix",
"start": "npm run clean && UV_THREADPOOL_SIZE=10 webpack-dev-server --config webpack.config.babel.js --progress --hot --inline",
"build": "npm run clean && UV_THREADPOOL_SIZE=10 webpack --config webpack.build.config.babel.js --progress && cp favicon.ico build",
"serve": "NODE_PATH=$NODE_PATH:./src/app:./src/app/components:./src/app/components/Basic:./src/app/routes DEBUG=server,app* node --harmony src/server",
"clean-react": "rm -rf node_modules/react-intl/node_modules/react || true",
"clean": "npm run clean-react && npm run npm-check-react && rm -rf build/* && mkdir -p build",
"check-tr": "node ./scripts/tr-cross-lang.js --locales-dir src/app/locales --truth en.json",
"preversion": "npm run lint",
"postversion": "npm shrinkwrap --dev && git add npm-shrinkwrap.json package.json -f && git commit -m \"shrinkwrap\"",
"npm-check-react": "case \"`npm list react --parseable | wc -l`\" in *\"1\") echo \"ok\";; *) echo \"check your deps, multiple versions of react found\" && exit 1;; esac"
},
"license": "MIT",
"devDependencies": {
"babel-core": "^6.4.5",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.1",
"babel-plugin-lodash": "^2.0.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"compression-webpack-plugin": "^0.3.0",
"css-loader": "^0.23.1",
"eslint": "3",
"eslint-config-buildo": "github:buildo/eslint-config",
"eslint-loader": "^1.2.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^1.7.0",
"json-loader": "^0.5.4",
"node-sass": "^3.4.2",
"resolve-url-loader": "^1.4.3",
"sass-loader": "^3.1.2",
"sass-variable-loader": "github:nordnet/sass-variable-loader",
"style-loader": "^0.13.0",
"webpack": "^1.12.12",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"avenger": "0.2.8",
"buildo-react-components": "0.9.2",
"debug": "^2.2.0",
"intl": "^1.0.1",
"invariant": "^2.2.0",
"lodash": "^4.1.0",
"normalize.css": "^3.0.3",
"react": "^0.14.6",
"react-dom": "^0.14.6",
"react-flexview": "^1.0.1",
"react-google-maps": "^4.7.2",
"react-intl-hoc": "^0.1.5",
"react-modal": "^0.6.1",
"react-router": "^2.0.0-rc5",
"react-router-transition-context": "^0.13.3",
"revenge": "^0.3.6",
"tcomb-react": "^0.9.3"
}
}