-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
90 lines (90 loc) · 3.22 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "code-presentation",
"version": "0.1.0",
"description": "code presentation engine",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config './config/webpack.config.dev.babel.js'",
"start:prod": "NODE_ENV=production yarn start",
"start:server": "node server/index.js",
"clean": "rimraf build",
"build": "yarn run clean;NODE_ENV=production webpack --config './config/webpack.config.production.babel.js' --progress",
"stats": "NODE_ENV=production webpack --config './config/webpack.config.production.babel.js' --json > ./build/stats.json",
"lint": "eslint src",
"test:src": "mocha --compilers js:babel-register './src/**/*.spec.js'",
"test:watch": "mocha --compilers js:babel-register --reporter min --watch './src/**/*.spec.js'",
"test": "yarn run lint && yarn run test:src",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"docker-nginx-start": "docker run -p80:80 -p443:443 --name nginx-for-github -d 'nginx-github'",
"docker-nginx-stop": "docker rm -f nginx-for-github"
},
"author": "Ivan Starkov",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^6.3.1",
"babel-cli": "^6.4.5",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-flow-react-proptypes": "^0.21.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.23.0",
"case-sensitive-paths-webpack-plugin": "^1.1.3",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"css-loader": "^0.23.1",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.9.2",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.2",
"expect": "^1.20.1",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"flow-bin": "^0.28.0",
"html-webpack-plugin": "^2.22.0",
"http-proxy-middleware": "^0.17.1",
"mocha": "^2.5.3",
"node-sass": "^3.4.2",
"normalize.css": "^4.1.1",
"postcss-loader": "^0.9.1",
"postcss-modules-values": "^1.1.3",
"react-hot-loader": "^3.0.0-beta.2",
"rimraf": "^2.5.4",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"worker-loader": "^0.7.0"
},
"dependencies": {
"codemirror": "^5.17.0",
"dom-helpers": "^2.4.0",
"fbjs": "^0.8.3",
"js-base64": "^2.1.9",
"lodash": "^4.13.1",
"node-uuid": "^1.4.7",
"prismjs": "^1.5.1",
"raf": "^3.3.0",
"react": "^15.4.2",
"react-addons-shallow-compare": "^15.2.0",
"react-css-themr": "^1.3.0",
"react-dom": "^15.4.2",
"react-motion": "^0.4.7",
"react-router": "^2.7.0",
"react-virtualized": "next",
"recompose": "^0.22.0",
"rxjs": "^5.1.1",
"slate": "^0.10.8",
"webfontloader": "^1.6.26"
}
}