-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.75 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
{
"name": "builder-react-fullstack",
"version": "1.0.0",
"description": "Builder Archetype - React Fullstack",
"main": "lib/index.js",
"scripts": {
"builder:compile": "rm -rf lib && babel index.js runner.js --out-dir lib/ && babel scripts --out-dir lib/scripts && babel config --out-dir lib/config",
"builder:gen-dev": "builder-support gen-dev",
"prepublish": "npm run builder:compile",
"eslint": "eslint --color src/**/*.js",
"jscs": "jscs src/**/*.js",
"lint": "builder concurrent eslint jscs",
"test:all": "jest --config node_modules/builder-react-fullstack/config/jest/config.json --colors",
"test:all:watch": "jest --config node_modules/builder-react-fullstack/config/jest/config.json --watch --colors",
"test:all:coverage": "jest --config node_modules/builder-react-fullstack/config/jest/config.coverage.json --colors",
"bundle": "node node_modules/builder-react-fullstack/lib/runner bundle",
"build": "node node_modules/builder-react-fullstack/lib/runner build",
"serve": "node node_modules/builder-react-fullstack/lib/runner serve",
"release": "node node_modules/builder-react-fullstack/lib/runner release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hourliert/builder-react-fullstack.git"
},
"keywords": [
"builder",
"archetype",
"react",
"fullstack"
],
"author": "Thomas Hourlier <[email protected]> (https://github.com/hourliert)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hourliert/builder-react-fullstack/issues"
},
"homepage": "https://github.com/hourliert/builder-react-fullstack#readme",
"dependencies": {
"babel-cli": "^6.5.0",
"babel-core": "^6.5.0",
"babel-loader": "^6.2.0",
"babel-plugin-add-module-exports": "^0.1.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.5.0",
"babel-preset-latest": "^6.14.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"browser-sync": "^2.9.11",
"del": "^2.0.2",
"file-loader": "^0.8.4",
"json-loader": "^0.5.3",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"raw-loader": "^0.5.1",
"replace": "^0.3.0",
"semver": "^5.1.0",
"source-map-loader": "^0.1.5",
"url-loader": "^0.5.6",
"webpack": "^1.12.14",
"webpack-hot-middleware": "^2.2.0",
"webpack-isomorphic-tools": "^2.2.26",
"webpack-middleware": "^1.5.1",
"webpack-split-by-path": "0.0.8"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"builder-support": "^0.3.0",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-config-react": "^1.1.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"jscs": "^3.0.0"
}
}