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
|
{
"name": "getslask.com",
"version": "0.0.1",
"description": "Landing page for slask",
"repository:": {
"type": "git",
"url": "https://github.com/nvandoorn/getslask.com.git"
},
"main": "index.js",
"scripts": {
"clean": "rimraf ./build/*",
"build": "yarn run clean && NODE_ENV=production APP_TITLE='App' webpack --config ./config/webpack.config.js",
"dev": "APP_TITLE='App' webpack-dev-server --config ./config/webpack.config.js",
"serve": "serve -s ./build",
"publish": "yarn run build && cp-cli CNAME ./build/CNAME && gh-pages -d build"
},
"author": "Nick Van Doorn <vandoorn.nick@gmail.com>",
"license": "ISC",
"dependencies": {
"autoprefixer": "^7.0.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"cp-cli": "^1.0.2",
"css-js-loader": "^0.3.0",
"css-loader": "^0.28.1",
"eslint": "^3.19.0",
"eslint-config-react-app": "^0.6.2",
"eslint-loader": "^1.7.1",
"eslint-plugin-flowtype": "^2.21.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.2",
"font-awesome": "^4.7.0",
"gh-pages": "^1.0.0",
"html-webpack-plugin": "^2.28.0",
"interpolate-html-plugin": "^2.0.0",
"lodash": "^4.17.4",
"postcss-cssnext": "^2.11.0",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.5",
"postcss-nesting": "^3.0.0",
"precss": "^2.0.0",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-fontawesome": "^1.6.1",
"rimraf": "^2.6.1",
"serve": "^5.1.5",
"uglifyjs-webpack-plugin": "^0.4.3",
"url-loader": "^0.5.8",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5"
},
"eslintConfig": {
"extends": "react-app"
}
}
|