-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.36 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
{
"name": "stylist-react",
"version": "1.2.7",
"description": "theme first, fully static styled component for react",
"license": "MIT",
"author": {
"name": "Mo Wang"
},
"repository": {
"type": "git",
"url": "https://github.com/marty-wang/stylist-react.git"
},
"scripts": {
"start": "node tools/devServer.js",
"build": "rimraf dist && webpack --config webpack.lib.config.js --mode production",
"prepublish": "npm run build"
},
"typings": "./dist/stylist.d.ts",
"main": "./dist/stylist.js",
"files": [
"dist",
"LICENSE"
],
"dependencies": {
"typestyle": "^2.0.1"
},
"devDependencies": {
"@types/react": "^16.0.15",
"@types/react-dom": "^16.0.2",
"css-loader": "^0.26.1",
"express": "^4.14.0",
"html-webpack-plugin": "^3.2.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"rimraf": "^2.6.0",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"ts-loader": "^5.3.3",
"tslint": "^5.7.0",
"tslint-loader": "^3.5.3",
"typescript": "^3.2.2",
"webpack": "^4.29.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.2.1",
"webpack-dev-middleware": "^3.5.1",
"webpack-notifier": "^1.7.0"
}
}