-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.21 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
{
"author": "Hartorn",
"name": "dd5-character-builder",
"description": "Character builder for D&D 5",
"version": "0.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Hartorn/dd5-character-builder.git"
},
"engines": {
"node": "6.9.x",
"npm": "3.10.x"
},
"scripts": {
"production": "better-npm-run production",
"build": "npm run production",
"start": "npm run start:npm",
"start:npm": "better-npm-run webpack-dev-server-npm-focus",
"watch": "better-npm-run watch"
},
"main": "app/index.js",
"betterScripts": {
"production": {
"command": "webpack --color --progress",
"env": {
"ANCHOR_CLASS": "demo-app",
"BABELIFIED_PATH": "./app",
"ENTRY_FILE_PATH": "./app/index",
"PAGE_TITLE": "Focus demonstration application",
"OUTPUT_DIR": "./docs",
"OUTPUT_PUBLIC_PATH": "/character-builder-dd5/",
"BASE_URL": "/character-builder-dd5/",
"LOCAL_FOCUS": false,
"LEGACY_SEARCH_API": false,
"DEV": false,
"SOURCE_MAPS": false,
"MINIMIFY": true,
"NODE_ENV": "production",
"GENERATE_HTML": false
}
},
"watch": {
"command": "webpack --color --progress --watch",
"env": {
"ANCHOR_CLASS": "demo-app",
"BABELIFIED_PATH": "./app",
"ENTRY_FILE_PATH": "./app/index",
"PAGE_TITLE": "Focus demonstration application",
"API_HOST": "localhost",
"API_PORT": 8080,
"OUTPUT_DIR": "./public",
"LOCAL_FOCUS": false,
"LEGACY_SEARCH_API": false,
"BASE_URL": "/"
}
},
"webpack-dev-server-npm-focus": {
"command": "node ./dev-server.js",
"env": {
"ANCHOR_CLASS": "demo-app",
"BABELIFIED_PATH": "./app",
"ENTRY_FILE_PATH": "./app/index",
"PAGE_TITLE": "Focus demonstration application",
"API_HOST": "localhost",
"API_PORT": 8080,
"OUTPUT_DIR": "./public",
"LOCAL_FOCUS": false,
"LEGACY_SEARCH_API": false,
"BASE_URL": "/",
"NODE_ENV": "development",
"HOT_RELOAD": "true",
"GENERATE_HTML": "true"
}
}
},
"devDependencies": {
"better-npm-run": "0.1.0",
"eslint-config-focus": "0.5.0",
"focus-components": "Kleegroup/focus-components#develop",
"focus-core": "2.1.1",
"focus-devtools": "0.4.0",
"lodash": "4.17.4",
"material-design-icons-iconfont": "3.0.3",
"material-design-lite": "1.3.0",
"moment": "2.18.1",
"numeral": "1.5.6",
"react": "15.6.1",
"react-dom": "15.6.1",
"react-router": "3.0.0",
"react-slick": "0.14.11",
"webpack-focus": "Kleegroup/webpack-focus#feature-error-overlay"
}
}