forked from cloudflare/doca-bootstrap-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.49 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
{
"name": "doca-simpplr-theme",
"version": "1.0.2",
"description": "Simpplr's Doca theme using Twitter Bootstrap",
"main": "index.js",
"author": ["Vojtech Miksu <[email protected]>", "Joe Holdcroft <[email protected]>"],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/cloudflare/doca-bootstrap-theme"
},
"scripts": {
"build": "npm run clean && mkdir -p build && babel components --out-dir build",
"lint": "eslint components || true",
"prepublish": "cross-env NODE_ENV=production npm run build",
"clean": "rimraf build"
},
"files": [
"*.md",
"build",
"fonts",
"styles",
"assets"
],
"dependencies": {
"immutable": "^3.8.1",
"lodash": "^4.13.1",
"react": "^15.2.0",
"react-dom": "^15.2.0",
"react-immutable-proptypes": "^1.7.1",
"react-marked-markdown": "^1.4.0",
"react-pure-render": "^1.0.2"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.1.1",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"cross-env": "^1.0.8",
"eslint": "^3.0.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-loader": "^1.4.1",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.1.1",
"rimraf": "^2.5.3"
}
}