-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
88 lines (88 loc) · 2.46 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
{
"name": "preact-mobx-starter",
"version": "0.0.1",
"description": "Preact starter with react-router and mobx-react.",
"main": "src/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "better-npm-run build",
"build:dev": "better-npm-run build:dev",
"dev": "better-npm-run dev"
},
"betterScripts": {
"build": {
"command": "npm run clean && webpack",
"env": {
"NODE_ENV": "production"
}
},
"build:dev": {
"command": "npm run clean && webpack",
"env": {
"NODE_ENV": "development"
}
},
"dev": {
"command": "babel-node build/dev-server.js",
"env": {
"NODE_ENV": "development"
}
}
},
"author": "eren <[email protected]>",
"license": "ISC",
"dependencies": {
"autobind-decorator": "^1.3.4",
"classnames": "^2.2.5",
"mobx": "^2.6.4",
"mobx-react": "^4.0.3",
"normalize.css": "^5.0.0",
"preact": "^6.4.0",
"preact-compat": "^3.9.3",
"react-motion": "^0.4.5",
"react-router": "^3.0.0"
},
"devDependencies": {
"autoprefixer": "^6.5.3",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-runtime": "^6.18.0",
"better-npm-run": "0.0.13",
"connect-history-api-fallback": "^1.3.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.0",
"cssnano": "^3.8.1",
"eslint": "^3.11.1",
"eslint-config-standard": "^6.2.1",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.7.1",
"eslint-plugin-standard": "^2.0.1",
"eventsource-polyfill": "^0.9.6",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"json-loader": "^0.5.4",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mobx-react-devtools": "^4.2.10",
"postcss-loader": "^1.1.1",
"react": "^15.4.1",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.4",
"webpack-hot-middleware": "^2.13.2"
}
}