This repository was archived by the owner on Aug 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.56 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.56 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "focus-tuto-v3",
"version": "0.1.0",
"description": "Form, data behaviours",
"main": "src/index.js",
"scripts": {
"test": "BABEL_ENV=test mocha src/**/__tests__/**/*.js",
"test:watch": "BABEL_ENV=test mocha src/**/__tests__/**/*.js --watch",
"start": "better-npm-run dev-server",
"build:node": "better-npm-run babelify",
"build": "npm run build:node",
"build:watch": "better-npm-run watch",
"publish": "npm run build"
},
"betterScripts": {
"dev-server": {
"command": "node ./server.js",
"env": {
"DEV": true,
"SOURCE_MAPS": false,
"ENTRY_FILE_PATH": "./src/",
"PAGE_TITLE": "Focus entity dev page",
"MINIMIFY": false,
"API_PORT": 9999,
"PACKAGE_JSON_PATH": "../",
"ANCHOR_CLASS": "focus-tuto-app"
}
},
"watch": {
"command": "webpack --watch ./src/index.js",
"env": {
"DEV": true,
"SOURCE_MAPS": false,
"ENTRY_FILE_PATH": "./src/index",
"PAGE_TITLE": "Focus entity dev page",
"MINIMIFY": false,
"API_PORT": 9999,
"PACKAGE_JSON_PATH": "../",
"ANCHOR_CLASS": "focus-tuto-app"
}
},
"babelify": {
"env": {
"BABEL_ENV": "production"
},
"command": "node scripts/babelify.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/pierr/data-behaviours.git"
},
"keywords": [
"react",
"redux",
"data",
"focus"
],
"author": "Pierre Besson <Pierre.besson7+npm@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pierr/data-behaviours/issues"
},
"homepage": "https://github.com/pierr/data-behaviours#readme",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.2",
"babel-plugin-flow-comments": "^6.3.19",
"babel-polyfill": "^6.16.0",
"babel-preset-focus": "^0.6.1",
"better-npm-run": "0.0.11",
"body-parser": "^1.14.2",
"chai": "^3.5.0",
"chai-subset": "^1.2.0",
"css-loader": "^0.25.0",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"faker": "^3.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.8.1",
"i18next": "^3.4.3",
"isomorphic-fetch": "^2.2.1",
"jsdom": "^9.6.0",
"json-loader": "^0.5.4",
"lodash": "^4.17.4",
"material-design-icons-iconfont": "^3.0.0",
"material-design-lite": "^1.2.1",
"mocha": "^3.1.0",
"moment": "^2.17.1",
"node-sass": "^3.10.1",
"react-addons-css-transition-group": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.2",
"redux-devtools": "^3.3.2",
"redux-logger": "^2.7.4",
"redux-slider-monitor": "^1.0.7",
"remarkable": "^1.7.1",
"sass-loader": "^4.0.2",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.0",
"webpack-focus": "^0.12.2"
},
"dependencies": {
"focus-application": "3.0.0",
"focus-components": "3.0.0",
"focus-graph": "3.0.0",
"focus-search": "3.0.0",
"material-design-icons-iconfont": "2.0.4",
"material-design-lite": "1.2.1",
"react": "15.4.2",
"react-dom": "15.4.2",
"react-redux": "5.0.2",
"react-router": "3.0.2",
"redux": "3.6.0",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-inspector": "^0.10.0",
"redux-thunk": "2.2.0"
}
}