-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.38 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
{
"name": "syntax-highlighting-theme-generator",
"version": "0.0.1",
"description": "A theme generator for javascript syntax highlighters",
"main": "index.js",
"scripts": {
"build": "npm-run-all build:**",
"start": "npm run build && npm-run-all --parallel server watch:**",
"prebuild": "rimraf www && mkdirp www",
"prestart": "npm run prebuild",
"build:static": "cpx \"src/static/**/*\" www",
"watch:static": "npm run build:static -- -w",
"build:js": "webpack -p",
"watch:js": "webpack -d --watch",
"build:css": "npm run watch:css -- --no-watch",
"watch:css": "autoless --autoprefix \"last 2 versions\" --source-map src www",
"server": "live-server www --port=8888"
},
"author": "k88hudson",
"license": "MPL-2.0",
"dependencies": {
"lodash.throttle": "3.0.4",
"react": "0.13.3",
"react-markdocs": "https://github.com/k88hudson/react-markdocs.git#811c16cc2b28f840bfdb6702501fbd462b11011a"
},
"engines": {
"npm": ">=2.0.0"
},
"devDependencies": {
"autoless": "^0.1.7",
"babel-core": "^5.2.17",
"babel-loader": "^5.0.0",
"cpx": "^1.1.6",
"inject-loader": "^2.0.1",
"json-loader": "^0.5.2",
"jsx-loader": "^0.13.2",
"live-server": "^0.7.1",
"mkdirp": "^0.5.0",
"mocha": "^2.2.5",
"npm-run-all": "^1.2.4",
"rimraf": "^2.3.3",
"should": "^7.0.4",
"webpack": "^1.9.4"
}
}