-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.5 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.5 KB
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
{
"name": "workout-book",
"version": "1.0.0",
"description": "Workout app",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "better-npm-run dev",
"dev:watch": "nodemon --exec 'better-npm-run dev' --watch tools/",
"build": "better-npm-run build",
"build:watch": "nodemon --exec 'better-npm-run build' --watch tools/",
"postinstall": "better-npm-run build"
},
"betterScripts": {
"dev": {
"command": "gulp dev",
"env": {
"NODE_ENV": "development"
}
},
"build": {
"command": "gulp",
"env": {
"NODE_ENV": "production"
}
}
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"css-loader": "^0.28.4",
"del": "^2.2.2",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-import-resolver-webpack": "^0.8.1",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"fs-exists-sync": "^0.1.0",
"html-webpack-plugin": "^2.28.0",
"lost": "^8.0.0",
"node-sass": "^4.5.3",
"nodemon": "^1.11.0",
"postcss": "^6.0.1",
"postcss-cssnext": "^2.11.0",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.5",
"postcss-mixins": "^6.0.0",
"postcss-nested": "^2.0.2",
"react-hot-loader": "next",
"require-dir": "^0.3.2",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.2",
"stylelint": "^7.10.1",
"stylelint-config-css-modules": "^1.0.0",
"stylelint-config-lost": "^0.0.3",
"stylelint-config-standard": "^16.0.0",
"uglifyjs-webpack-plugin": "^0.4.3",
"webpack": "^2.6.1",
"webpack-bundle-analyzer": "^2.8.2",
"webpack-dev-server": "^2.4.5",
"webpack-merge": "^4.1.0"
},
"dependencies": {
"better-npm-run": "^0.0.15",
"bulma": "^0.4.2",
"express": "^4.15.4",
"gulp": "^3.9.1",
"history": "^4.6.1",
"immutable": "4.0.0-rc.2",
"jwt-decode": "^2.2.0",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0"
}
}