-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.11 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.11 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
{
"name": "swanky-docs-patterns",
"description": "Swanky Docs Patterns Demo",
"version": "1.0.0",
"main": "index.js",
"repository": {
"url": "[email protected]:swanky-docs/patterns.swanky-docs.org.git",
"type": "git"
},
"author": "Rod Leviton <[email protected]>",
"contributors": [
"Rod Leviton <[email protected]>",
"Brett Uglow <[email protected]>"
],
"license": "MIT",
"scripts": {
"start": "node src/config/start/serve.dev.js",
"prebuild": "rimraf docs/",
"build": "NODE_ENV=production webpack -p --progress --config src/config/build/build.prod.js --profile --colors",
"build:serve": "npm-run-all build serve:prod",
"serve:prod": "http-server docs -o"
},
"dependencies": {
"angular": "^1.6.4",
"highlightjs": "9.10.0",
"node-uuid": "^1.4.8",
"prop-types": "^15.5.8",
"react": "15.5.4",
"react-dom": "15.5.4"
},
"devDependencies": {
"babel-preset-react": "^6.24.1",
"http-server": "0.9.0",
"npm-run-all": "4.0.2",
"rimraf": "2.6.1",
"swanky": "^4.0.1",
"swanky-processor-jsdoc": "^1.1.2",
"webpack": "^2.4.1"
}
}