-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.04 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.04 KB
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": "catbee-docs",
"version": "1.0.0",
"description": "Catbee documentation website",
"main": "run.js",
"dependencies": {
"babel-polyfill": "^6.7.2",
"babel-runtime": "^6.6.1",
"baobab": "^2.3.3",
"body-parser": "^1.15.0",
"catbee": "^2.0.0",
"catbee-handlebars": "^4.0.1",
"catbee-utils": "file:./packages/catbee-utils",
"catberry-uhr": "^4.2.3",
"compression": "^1.6.1",
"config": "file:./packages/config",
"cookie-parser": "^1.4.1",
"express": "^4.13.4",
"localenv": "^0.2.2",
"lodash": "^4.6.1",
"moment": "^2.11.2",
"remarkable": "^1.6.2",
"yamlify": "^0.1.2"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel-cli": "^6.6.5",
"babel-eslint": "^5.0.0",
"babel-lab": "^1.0.0",
"babel-plugin-syntax-flow": "^6.5.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.7.0",
"babel-plugin-transform-runtime": "^6.6.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"babelify": "^7.2.0",
"concurrently": "^2.0.0",
"css-modules-require-hook": "^2.1.1",
"css-modulesify": "^0.19.0",
"cssnano": "^3.5.2",
"eslint": "^2.2.0",
"generic-names": "^1.0.1",
"git-rev-sync": "^1.4.0",
"glob": "^7.0.0",
"lab": "^10.2.0",
"ncp": "^2.0.0",
"postcss-hexrgba": "^0.2.0",
"postcss-mixins": "^4.0.1",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^1.2.0",
"postcss-svg": "file:./packages/postcss-svg"
},
"scripts": {
"start": "concurrently 'node build' 'node run' -k -p pid",
"release": "$SHELL builder/release/make.sh",
"lint": "node ./node_modules/.bin/eslint ./signals ./watchers ./components ./actions ./test",
"test": "lab -T node_modules/babel-lab",
"heroku-postbuild": "npm run release"
},
"author": "k.kaysarov <defcuts@mail.ru>",
"license": "MIT",
"browser": {
"./config/env.js": "./config/env.mock.js"
},
"engines": {
"node": "5.10.0"
}
}