-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 911 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 911 Bytes
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
{
"name": "@geekie/css",
"version": "1.0.0",
"description": "A simple CSS-in-JS solution that extracts to CSS files",
"repository": "geekie/css",
"license": "MIT",
"main": "dist/index.js",
"files": [
"index.js",
"src",
"babel",
"webpack"
],
"keywords": [
"react",
"css",
"inline"
],
"dependencies": {
"@babel/generator": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.0.0",
"@babel/template": "^7.0.0",
"@babel/types": "^7.0.0",
"loader-utils": "^1.1.0",
"match-ast": "^2.0.0",
"webpack-sources": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-jest": "^24.8.0",
"del": "^4.1.1",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"webpack": "^4.34.0"
},
"scripts": {
"test": "jest"
}
}