-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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": "liiga_frontend",
"description": "",
"version": "0.4.0",
"private": true,
"main": "main.js",
"scripts": {
"start": "coffee --transpile server.coffee",
"start:production": "NODE_ENV=production coffee server.coffee",
"postinstall": "npm run build",
"build": "NODE_ENV=production webpack --config webpack.config.prod.js"
},
"author": "Lari Hoppula",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"react-hot-loader": "^1.3.0",
"webpack-dev-middleware": "^1.5.1",
"webpack-hot-middleware": "^2.6.4"
},
"dependencies": {
"cerebellum": "0.9.1",
"cerebellum-react": "1.3.0",
"classnames": "^2.2.5",
"coffee-loader": "^0.9.0",
"coffeescript": "^2.2.2",
"compression": "^1.6.1",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"less": "^2.5.3",
"less-loader": "^2.2.2",
"lodash": "^3.10.1",
"moment": "^2.11.1",
"react": "^0.14.6",
"react-bootstrap": "^0.28.2",
"react-dom": "^0.14.6",
"react-icons": "^1.0.3",
"style-loader": "^0.13.0",
"svg-url-loader": "^1.0.2",
"url-loader": "^0.5.7",
"webpack": "^1.12.12"
},
"browser": {
"./config/api.coffee": "./config/api-browser.coffee"
},
"engines": {
"node": "0.12.x"
}
}