-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.54 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
{
"name": "schibsted",
"version": "1.0.0",
"description": "A simple react front-end built with webpack",
"main": "index.js",
"engines": {
"node": "7.5.0"
},
"scripts": {
"build:prod": "NODE_ENV=production webpack -p --env.prod",
"build:dev": "webpack --env.dev",
"build:prod:watch": "webpack -p --watch --env.prod",
"build:dev:watch": "webpack --watch --env.dev",
"prebuild:dev": "rm -rf public",
"prebuild:prod": "rm -rf public",
"prebuild:dev:watch": "rm -rf public",
"prebuild:prod:watch": "rm -rf public",
"deploy:surge": "npm run build:prod;surge --domain react-videos.surge.sh -p public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/debugme/react-frontend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/debugme/react-frontend/issues"
},
"homepage": "https://github.com/debugme/react-frontend#readme",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "6.22.0",
"babel-preset-es2016": "6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "6.22.0",
"css-loader": "^0.26.1",
"eslint": "^3.13.1",
"extract-text-webpack-plugin": "^2.0.0-beta.5",
"html-webpack-plugin": "^2.26.0",
"node-sass": "^4.3.0",
"sass-loader": "^4.1.1",
"surge": "^0.18.0",
"webpack": "^2.2.0"
},
"dependencies": {
"express": "^4.14.0",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"react": "15.4.2",
"react-dom": "15.4.2"
}
}