This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (83 loc) · 3.1 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
79
80
81
82
83
84
85
{
"name": "x_team_css_in_js",
"version": "1.0.0",
"description": "X-Team CSS in JS",
"scripts": {
"build-aphrodite": "webpack --config webpack-config/webpack.aphrodite.config.js --progress --profile --colors",
"build-cxs": "webpack --config webpack-config/webpack.cxs.config.js --progress --profile --colors",
"build-emotion": "webpack --config webpack-config/webpack.emotion.config.js --progress --profile --colors",
"build-glamorous": "webpack --config webpack-config/webpack.glamorous.config.js --progress --profile --colors",
"build-jss": "webpack --config webpack-config/webpack.jss.config.js --progress --profile --colors",
"build-radium": "webpack --config webpack-config/webpack.radium.config.js --progress --profile --colors",
"build-styled": "webpack --config webpack-config/webpack.styled.config.js --progress --profile --colors",
"build-styletron": "webpack --config webpack-config/webpack.styletron.config.js --progress --profile --colors",
"build-all": "npm run build-aphrodite && npm run build-cxs && npm run build-emotion && npm run build-glamorous && npm run build-jss && npm run build-radium && npm run build-styled && npm run build-styletron",
"number-request": "node test-suite/number.requests.test.js",
"phantom-page": "node test-suite/phantom.pageload.test.js",
"phantom-io": "node test-suite/phantom.io.test.js",
"test-all": "npm run number-request && npm run phantom-page && npm run phantom-io",
"launch-pages": "node test-suite/hot.server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Thoughtscript/x_team_css_in_js.git"
},
"engines": {
"node": "=8.8.0"
},
"keywords": [
"Aphrodite",
"CXS",
"Emotion",
"Glamorous",
"JSS",
"Radium",
"Styled-Components",
"Styletron"
],
"author": "Adam I. Gerard",
"license": "MIT",
"bugs": {
"url": "https://github.com/Thoughtscript/x_team_css_in_js/issues"
},
"homepage": "https://github.com/Thoughtscript/x_team_css_in_js#readme",
"devDependencies": {
"aphrodite": "=2.1.1",
"autoprefixer": "=7.2.2",
"babel-core": "=6.26.0",
"babel-loader": "=7.1.4",
"babel-plugin-transform-decorators-legacy": "=1.3.4",
"babel-preset-es2015": "=6.24.1",
"babel-preset-react": "=6.24.1",
"babel-preset-stage-0": "=6.24.1",
"css-loader": "=0.28.11",
"cxs": "=6.2.0",
"emotion": "=9.1.1",
"extract-text-webpack-plugin": "=3.0.2",
"file-loader": "=1.1.5",
"glamor": "=2.20.40",
"glamorous": "=4.12.3",
"image-webpack-loader": "=3.4.2",
"jest": "=22.4.3",
"jss": "=9.8.1",
"live-server": "=1.2.0",
"node-sass": "=4.7.2",
"phantom": "=4.0.12",
"postcss-loader": "=2.0.9",
"postcss-smart-import": "=0.7.6",
"radium": "=0.24.0",
"request": "=2.85.0",
"sass-loader": "=6.0.6",
"style-loader": "=0.19.0",
"styled-components": "=3.2.5",
"styletron-react": "=4.0.3",
"webpack": "=3.6.0"
},
"dependencies": {
"react": "=16.2.0",
"react-dom": "=16.2.0",
"react-redux": "=5.0.7",
"react-router-dom": "=4.2.2",
"redux": "=3.7.2"
}
}