This repository was archived by the owner on Feb 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 4.5 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 4.5 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
{
"name": "builder-react-component",
"version": "0.4.4",
"description": "Builder Archetype - React Component",
"repository": {
"type": "git",
"url": "https://github.com/FormidableLabs/builder-react-component.git"
},
"author": "Ryan Roemer <ryan.roemer@formidablelabs.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/FormidableLabs/builder-react-component/issues"
},
"homepage": "https://github.com/FormidableLabs/builder-react-component",
"scripts": {
"npm:postinstall": "builder run build --expand-archetype",
"npm:preversion": "builder run check",
"npm:version": "builder run clean && builder run build",
"npm:postversion": "publishr postversion -V",
"npm:postpublish": "publishr postpublish -V",
"npm:test": "builder run test-frontend",
"version-dry-run": "publishr dry-run -V",
"clean-dist": "rimraf dist",
"build-dist-min": "webpack --bail --config node_modules/builder-react-component/config/webpack/webpack.config.js --colors",
"build-dist-dev": "webpack --bail --config node_modules/builder-react-component/config/webpack/webpack.config.dev.js --colors",
"build-dist": "builder run clean-dist && builder run build-dist-min && builder run build-dist-dev",
"clean-libs": "rimraf es lib",
"build-babel": "babel src --copy-files",
"build-es": "builder run --env \"{\\\"BABEL_ENV\\\":\\\"es\\\"}\" build-babel -- -d es",
"build-lib": "builder run --env \"{\\\"BABEL_ENV\\\":\\\"commonjs\\\"}\" build-babel -- -d lib",
"build-libs": "builder concurrent --queue=1 build-lib build-es",
"clean": "builder run clean-libs && builder run clean-dist",
"build": "builder run build-libs && builder run build-dist",
"server-dev": "webpack-dev-server --port 3000 --config node_modules/builder-react-component/config/webpack/demo/webpack.config.dev.js --colors --content-base demo",
"server-hot": "webpack-dev-server --port 3000 --config node_modules/builder-react-component/config/webpack/demo/webpack.config.hot.js --colors --hot --content-base demo",
"server-test": "webpack-dev-server --port 3001 --config node_modules/builder-react-component/config/webpack/webpack.config.test.js --colors",
"dev": "builder concurrent server-dev server-test",
"hot": "builder concurrent server-hot server-test",
"open-demo": "opener http://127.0.0.1:3000",
"open-dev": "builder concurrent dev open-demo",
"open-hot": "builder concurrent hot open-demo",
"lint-server": "eslint --color -c node_modules/builder-react-component/config/eslint/.eslintrc-server *.js",
"lint-client": "eslint --color -c node_modules/builder-react-component/config/eslint/.eslintrc-client src demo/*.js",
"lint-client-test": "eslint --color -c node_modules/builder-react-component/config/eslint/.eslintrc-client-test src test/client",
"lint": "builder concurrent lint-server lint-client lint-client-test",
"test-frontend": "karma start node_modules/builder-react-component/config/karma/karma.conf.js",
"test-frontend-ci": "karma start --browsers PhantomJS,Firefox node_modules/builder-react-component/config/karma/karma.conf.coverage.js",
"test-frontend-cov": "karma start node_modules/builder-react-component/config/karma/karma.conf.coverage.js",
"test-frontend-dev": "karma start node_modules/builder-react-component/config/karma/karma.conf.dev.js",
"test": "builder run npm:test",
"test-ci": "builder run test-frontend-ci",
"test-cov": "builder run test-frontend-cov",
"test-dev": "builder run test-frontend-dev",
"check": "builder run lint && builder run test",
"check-ci": "builder run lint && builder run test-ci",
"check-cov": "builder run lint && builder run test-cov",
"check-dev": "builder run lint && builder run test-dev",
"builder:lint-server": "eslint --color -c config/eslint/.eslintrc-server *.js config/karma config/webpack dev/*.js",
"builder:lint": "npm run builder:lint-server",
"builder:check": "npm run builder:lint"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.7",
"file-loader": "^0.11.2",
"json-loader": "^0.5.4",
"rimraf": "^2.4.0",
"style-loader": "^0.18.2",
"url-loader": "~0.5.5",
"webpack": "^3.6.0"
},
"devDependencies": {
"builder-support": "^0.4.1",
"eslint": "^3.18.0",
"eslint-config-formidable": "^2.0.1",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-import": "^2.2.0"
}
}