This repository has been archived by the owner on Nov 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
71 lines (71 loc) · 3.22 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
{
"name": "examples",
"description": "JSS Examples",
"version": "2.1.0",
"private": true,
"author": {
"name": "Oleg Slobodskoi",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:cssinjs/examples.git"
},
"license": "MIT",
"engines": {
"node": ">=0.8.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"bootstrap": "^3.3.7",
"cpy": "^6.0.0",
"jss": "^9.3.3",
"jss-camel-case": "^6.0.0",
"jss-default-unit": "^8.0.0",
"jss-extend": "^6.0.1",
"jss-global": "^3.0.0",
"jss-isolate": "^5.0.0",
"jss-nested": "^6.0.1",
"jss-preset-default": "^4.0.1",
"jss-props-sort": "^6.0.0",
"jss-vendor-prefixer": "^7.0.0",
"lodash": "^4.17.4",
"parallelshell": "^3.0.2",
"perdido": "^2.0.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-jss": "^8.1.0",
"rxjs": "^5.4.3",
"stats.js": "^0.17.0",
"webpack": "^3.8.1"
},
"scripts": {
"build": "npm run build:calendar && npm run build:react-ssr && npm run build:function-values && npm run build:observables && npm run build:swinging-cat && npm run build:swinging-cat-rx",
"build:calendar": "webpack ./calendar/index.js ./calendar/dist/index.js --config ./calendar/webpack.config.js",
"build:react-ssr": "webpack --config ./react-ssr/webpack.config.js && node ./react-ssr/bin/build > ./react-ssr/dist/index.html",
"build:function-values": "webpack --config ./function-values/webpack.config.js",
"build:observables": "webpack --config ./observables/webpack.config.js",
"build:swinging-cat": "webpack --config ./swinging-cat/webpack.config.js",
"build:swinging-cat-rx": "webpack --config ./swinging-cat-rx/webpack.config.js",
"jss:all": "parallelshell 'npm run jss -s' 'npm run jss:plugins -s'",
"jss": "cpy ./node_modules/jss/dist/jss.js ./",
"jss:plugins": "parallelshell 'npm run jss:camel-case -s' 'npm run jss:extend -s' 'npm run jss:nested -s' 'npm run jss:props-sort -s' 'npm run jss:default-unit -s' 'npm run jss:vendor-prefixer -s' 'npm run jss:perdido -s' 'npm run jss:isolate -s' 'npm run jss:global -s' 'npm run jss:preset-default -s'",
"jss:camel-case": "cpy ./node_modules/jss-camel-case/dist/jss-camel-case.js ./",
"jss:extend": "cpy ./node_modules/jss-extend/dist/jss-extend.js ./",
"jss:isolate": "cpy ./node_modules/jss-isolate/dist/jss-isolate.js ./",
"jss:nested": "cpy ./node_modules/jss-nested/dist/jss-nested.js ./",
"jss:props-sort": "cpy ./node_modules/jss-props-sort/dist/jss-props-sort.js ./",
"jss:default-unit": "cpy ./node_modules/jss-default-unit/dist/jss-default-unit.js ./",
"jss:vendor-prefixer": "cpy ./node_modules/jss-vendor-prefixer/dist/jss-vendor-prefixer.js ./",
"jss:global": "cpy ./node_modules/jss-global/dist/jss-global.js ./",
"jss:preset-default": "cpy ./node_modules/jss-preset-default/dist/jss-preset-default.js ./",
"jss:perdido": "cpy ./node_modules/perdido/dist/perdido.js ./",
"prepublishOnly": "NODE_ENV=production npm run jss:all && npm run build"
}
}