-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.88 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.88 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
{
"name": "site",
"version": "0.8.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "doc"
},
"entry": {
"index": "./src/entry/index.js",
"guide": "./src/entry/guide.js",
"components": "./src/entry/components.js",
"chooseChannel": "./src/entry/chooseChannel.js"
},
"scripts": {
"build": "npm run clean && nico build && webpack -p",
"build:tag": "export NODE_ENV=tag && npm run build",
"start": "npm run clean && export NODE_ENV=dev && concurrent -r 'webpack -w' 'nico server --watch --port 4000'",
"clean": "rm -rf _site",
"publish": "npm run build && node publish.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"babel-core": "^6.7.4",
"babel-loader": "~6.2.0",
"babel-plugin-add-module-exports": "~0.1.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-typecheck": "~3.5.1",
"babel-preset-es2015": "6.6.x",
"babel-preset-react": "6.5.x",
"babel-preset-stage-0": "6.5.x",
"cheerio": "^0.19.0",
"css-loader": "^0.23.1",
"eslint-config-airbnb": "^6.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"he": "^0.5.0",
"highlight-loader": "^0.6.0",
"highlight.js": "^9.1.0",
"html-loader": "^0.4.0",
"image-webpack-loader": "^1.6.3",
"jquery": "^2.2.3",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"loader-utils": "^0.2.12",
"markdown-code-highlight-loader": "^1.0.1",
"markdown-loader": "^0.1.7",
"marked": "^0.3.5",
"nico": "^0.5.2",
"object-assign": "^2.0.0",
"rc-queue-anim": "^0.11.9",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "~1.12.2",
"webpack-dev-server": "^1.14.1"
},
"devDependencies": {
"babel-cli": "6.6.x",
"babel-istanbul": "^0.7.0",
"babel-polyfill": "^6.7.4",
"concurrently": "~0.1.0",
"gh-pages": "^0.11.0",
"open": "0.0.5"
}
}