-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
114 lines (114 loc) · 3.83 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"author": "[email protected]",
"name": "my-awesome-project-to-rename-app",
"description": "Focus demonstration application",
"version": "0.0.0",
"homepage": "https://github.com/KleeGroup/focus-demo-app",
"repository": {
"type": "git",
"url": "https://github.com/KleeGroup/focus-demo-app.git"
},
"engines": {
"node": "6.9.x",
"npm": "3.10.x"
},
"scripts": {
"production": "better-npm-run production",
"analyze": "better-npm-run analyze",
"build": "npm run production",
"start": "better-npm-run webpack-dev-server-npm-focus",
"watch": "better-npm-run watch"
},
"main": "app/index.js",
"betterScripts": {
"production": {
"command": "webpack --progress",
"env": {
"ANCHOR_CLASS": "demo-app",
"BABELIFIED_PATH": "./app",
"ENTRY_FILE_PATH": "./app/index",
"PAGE_TITLE": "Your project application",
"OUTPUT_DIR": "./prod",
"OUTPUT_PUBLIC_PATH": "./",
"API_ROOT": "/",
"BASE_URL": "/",
"DEV": "false",
"SOURCE_MAPS": "false",
"MINIMIFY": "true",
"DROP_CONSOLE": "true",
"NODE_ENV": "production"
}
},
"analyze": {
"command": "webpack --progress",
"env": {
"ANCHOR_CLASS": "demo-app",
"BABELIFIED_PATH": "./app",
"ENTRY_FILE_PATH": "./app/index",
"PAGE_TITLE": "Your project application",
"OUTPUT_DIR": "./prod",
"OUTPUT_PUBLIC_PATH": "./",
"API_ROOT": "/",
"BASE_URL": "/",
"DEV": "false",
"SOURCE_MAPS": "false",
"MINIMIFY": "true",
"DROP_CONSOLE": "true",
"NODE_ENV": "production",
"ANALYZE": "true"
}
},
"watch": {
"command": "webpack --watch",
"env": {
"ANCHOR_CLASS": "demo-app",
"BABELIFIED_PATH": "./app",
"ENTRY_FILE_PATH": "./app/index",
"PAGE_TITLE": "Focus demonstration application",
"OUTPUT_DIR": "./watch",
"OUTPUT_PUBLIC_PATH": "./",
"API_ROOT": "/",
"BASE_URL": "/",
"NODE_ENV": "development"
}
},
"webpack-dev-server-npm-focus": {
"command": "focus-dev-server",
"env": {
"ANCHOR_CLASS": "demo-app",
"BABELIFIED_PATH": "./app",
"ENTRY_FILE_PATH": "./app/index",
"PAGE_TITLE": "Focus demonstration application",
"OUTPUT_DIR": "./public",
"OUTPUT_PUBLIC_PATH": "./",
"API_HOST": "localhost",
"API_PORT": 8080,
"BASE_URL": "/",
"NODE_ENV": "development",
"HOT_RELOAD": "true",
"GENERATE_HTML": "true",
"USE_CACHE": "false",
"PARALLEL_BUILD": "true",
"DEV": "true"
}
}
},
"license": "MIT",
"devDependencies": {
"better-npm-run": "0.1.0",
"eslint-config-focus": "0.6.0",
"focus-components": "2.2.0",
"focus-core": "2.2.0",
"focus-devtools": "0.4.1",
"lodash": "4.17.4",
"material-design-icons-iconfont": "3.0.3",
"material-design-lite": "1.3.0",
"moment": "2.19.1",
"numeral": "2.0.6",
"react": "15.4.2",
"react-addons-css-transition-group": "15.4.2",
"react-dom": "15.4.2",
"react-router": "3.0.5",
"webpack-focus": "1.0.0"
}
}