-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 3.35 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
{
"name": "subschema-demo",
"version": "1.6.0",
"description": "Subschema Demo",
"main": "dist/index.js",
"dependencies": {},
"repository": "https://github.com/subschema/subschema-demo",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"autoprefixer": "^6.3.3",
"babel": "^6.5.2",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-plugin-dev-expression": "^0.2.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.9.0",
"babel-standalone": "^6.17.0",
"browser-filesaver": "^1.1.0",
"css-loader": "^0.23.1",
"es6-promise": "^3.0.2",
"expect": "^1.14.0",
"expose-loader": "^0.7.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"history": "^2.0.1",
"json-loader": "^0.5.3",
"jszip": "^2.6.0",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"less": "^2.5.3",
"less-loader": "^2.2.1",
"lodash": "^4.16.4",
"mocha": "^2.4.5",
"postcss": "^5.0.19",
"postcss-loader": "^0.9.1",
"react": "^15.4.0",
"react-addons-css-transition-group": "^15.4.0",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.4.0",
"react-transform-hmr": "^1.0.4",
"source-map": "^0.5.3",
"source-map-support": "^0.4.0",
"strip-loader": "^0.1.1",
"style-loader": "^0.13.0",
"subschema-test-samples": "^1.6.0",
"subschema-test-support": "^1.6.0",
"supports-color": "^3.1.2",
"url-loader": "^0.5.7",
"validate-npm-package-name": "^2.2.2",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
},
"scripts": {
"karma": "NODE_ENV=test karma start --no-single-run --colors --auto-watch",
"test": "NODE_ENV=test karma start --single-run --browsers Firefox",
"hot": "NODE_ENV=development webpack-dev-server --hot --inline ${WEBPACK_OPTIONS} --config ./webpack.config.js --entry ./public/app.jsx --output-filename=app.entry.js",
"not-hot": "NODE_ENV=nothot webpack-dev-server --host 0.0.0.0 --dev-tool=#source-map --port 8181 --config ./webpack.config.js --entry ./public/app.jsx --output-filename=app.entry.js",
"demo": "NODE_ENV=production webpack --display-modules -p --output-path .build --entry ./public/app.jsx --output-filename=app.[hash].js --config ./webpack.config.js",
"demo-debug": "NODE_ENV=production webpack --display-modules --output-path .build --entry ./public/app.jsx --output-filename=app.[hash].debug.js --config ./webpack.config.js",
"dist": "NODE_ENV=production webpack --display-modules -p --output-path dist --entry ./src/index.js --output-library-target=umd --output-library-name=SubschemaDemo --output-filename=index.js --config ./webpack.config.js",
"dist-debug": "NODE_ENV=production webpack --display-modules -p --output-path dist --entry ./src/index.js --output-library-target=umd --output-library-name=SubschemaDemo --output-filename=index.debug.js --config ./webpack.config.js",
"preversion": "npm run demo"
},
"author": "Justin Spears",
"license": "ISC"
}