-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.36 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
69
70
71
72
73
74
75
76
77
78
79
{
"name": "lcdproc-web",
"version": "1.0.0",
"description": "LCDproc website generator",
"engines": {
"node": "^6.1"
},
"scripts": {
"clean": "rimraf public",
"lint": "eslint client",
"conf": "babel-node ./scripts/generate-nginx-conf.js",
"test": "echo 'No tests specified.'",
"start:dev": "babel-node ./server.js",
"start": "npm run start:dev",
"build:static": "cross-env NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:static",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"bump:patch": "npm version patch -m \"v%s\"",
"bump:minor": "npm version minor -m \"v%s\"",
"bump": "npm run bump:patch"
},
"repository": {
"type": "git",
"url": "https://github.com/lcdproc/lcdproc-web"
},
"bugs": {
"url": "https://github.com/lcdproc/lcdproc-web/issues"
},
"author": "William Ferrell <[email protected]>",
"license": "GPL-2.0",
"homepage": "https://lcdproc.github.io/",
"dependencies": {
"autoprefixer-loader": "^3.2.0",
"axis": "^0.6.1",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-1": "^6.5.0",
"classnames": "^2.2.5",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"eslint": "^2.10.2",
"eslint-config-rackt": "^1.1.1",
"eslint-plugin-react": "^5.1.1",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"history": "^2.1.1",
"normalize.css": "^4.1.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-router": "^2.4.1",
"react-static-webpack-plugin": "^1.0.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.5",
"rimraf": "^2.5.2",
"rupture": "^0.6.1",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.1.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"devDependencies": {
"react-icons": "^2.2.1",
"rebass": "^0.3.0",
"reflexbox": "^1.1.4",
"stylus": "~0.54.5"
}
}