-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.03 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
{
"name": "particle_docs",
"version": "1.0.0",
"description": "API and Documentation.",
"main": "server.js",
"directories": {
"example": "examples"
},
"scripts": {
"build": "export NODE_ENV=production && webpack --config=./webpack.production.js",
"build:dev": "export NODE_ENV=development && webpack --config=./webpack.dev.js",
"dev": "npm run build:dev & npm run serve",
"serve": "nodemon -e \"node server.js\" js,handlebars,json, --watch ./controllers --watch ./views server.js --watch ./examples | bunyan",
"start": "node server.js",
"create": "./bin/cli create example"
},
"engines": {
"node": ">=6.9.0",
"npm": ">=3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/milesthedisch/particle_docs.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/milesthedisch/particle_docs/issues"
},
"homepage": "https://github.com/milesthedisch/particle_docs#readme",
"dependencies": {
"babel-runtime": "^6.20.0",
"bunyan": "^1.8.5",
"express": "^4.14.0",
"express-handlebars": "^3.0.0",
"extend": "^3.0.1",
"handlebars": "^4.0.6",
"particle_library": "../particle_library",
"whatwg-fetch": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.35",
"@babel/preset-env": "^7.0.0-beta.35",
"autoprefixer": "^6.6.0",
"babel-core": "^6.26.0",
"babel-loader": "^8.0.0-beta.0",
"babel-preset-env": "^1.6.1",
"clean-css": "^3.4.21",
"css-loader": "^0.28.7",
"docopt": "^0.6.2",
"eslint": "^4.13.1",
"eslint-config-google": "^0.9.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"fs-extra": "^4.0.3",
"html-webpack-plugin": "^2.24.1",
"node-sass": "^4.7.2",
"nodemon": "^1.11.0",
"npm-run-all": "^3.1.2",
"postcss-cli": "^2.6.0",
"resolve-url-loader": "^2.2.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"uglifyjs-webpack-plugin": "^1.0.0",
"url-loader": "^0.6.2",
"webpack": "^3.10.0"
}
}