-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·115 lines (115 loc) · 3.63 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "website-ssr",
"version": "1.0.0",
"description": "Website of RedPelicans (in progress)",
"main": "",
"scripts": {
"bundle:build": "cross-env NODE_ENV=production webpack -p --config webpack.config.js --progress",
"bundle:dev": "cross-env NODE_ENV=development webpack --watch --config webpack.config.js --progress",
"client:dev": "cross-env NODE_ENV=development webpack-dev-server --progress --config webpack.config.js",
"bundle:stats": "cross-env NODE_ENV=production webpack -p --config webpack.config.js --profile --json > stats.json",
"bundle:analyse": "webpack-bundle-analyzer ./stats.json --report --mode=static",
"server:dev": "cross-env NODE_ENV=development babel-watch -w ./config -w ./src -w ./build src/server/index.js",
"server:prod": "cross-env NODE_ENV=production babel-node src/server/index.js",
"server:dist": "cross-env NODE_ENV=production babel src -D --out-dir dist",
"start": "cross-env NODE_ENV=production node dist/server",
"lint": "eslint src/client --color"
},
"repository": {
"type": "git",
"url": "git+https://github.com/redpelicans/website-ssr.git"
},
"author": "RedPelicans",
"license": "MIT",
"bugs": {
"url": "https://github.com/redpelicans/website-ssr/issues"
},
"homepage": "https://github.com/redpelicans",
"dependencies": {
"babel-watch": "^2.0.3",
"bootstrap": "^3.3.7",
"compression": "^1.6.2",
"express": "^4.14.0",
"help": "^3.0.2",
"preact": "^8.1.0",
"preact-compat": "^3.16.0",
"preact-transition-group": "^1.1.1",
"ramda": "^0.22.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-headrooms": "^1.0.5",
"react-intl": "^2.2.2",
"react-router": "^4.1.1",
"react-router-dom": "^4.1.1",
"react-scroll": "^1.4.4",
"react-transition-group": "^1.1.3",
"serve-favicon": "^2.4.2",
"should": "^11.1.1"
},
"devDependencies": {
"autoprefixer": "^6.5.1",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-plugin-import": "^1.0.1",
"babel-plugin-react-intl": "^2.3.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"cross-env": "^3.2.3",
"css-loader": "^0.25.0",
"eslint": "^3.10.2",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.9.0",
"glob": "^7.1.1",
"ignore-styles": "^5.0.1",
"json-loader": "^0.5.4",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"mkdirp": "^0.5.1",
"postcss-cssnext": "^2.8.0",
"postcss-loader": "^1.1.0",
"postcss-mixins": "^5.4.0",
"postcss-scss": "^0.4.0",
"postcss-smart-import": "^0.5.1",
"postcss-url": "^5.1.2",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.1.1",
"redux-logger": "^2.7.4",
"style-loader": "^0.17.0",
"url-loader": "^0.5.8",
"webpack": "^2.5.1",
"webpack-bundle-analyzer": "^2.6.0",
"webpack-dev-server": "^2.4.5",
"webpack-merge": "^4.1.0"
},
"babel": {
"presets": [
"stage-0",
[
"latest",
{
"modules": false
}
],
"react"
],
"plugins": [
[
"transform-class-properties",
"react-intl",
{
"messagesDir": "./build/i18n/messages",
"enforceDescriptions": false
}
]
]
}
}