-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.9 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
{
"name": "stylus-in-react",
"version": "2.0.0",
"description": "Style React components with Stylus",
"main": "build/main.js",
"author": "Nitin Tulswani",
"license": "MIT",
"dependencies": {
"camel-case": "^3.0.0",
"common-tags": "^1.4.0",
"css": "^2.2.1",
"glamor": "^2.20.40",
"html-tags": "^2.0.0",
"inline-style-prefixer": "^3.0.7"
},
"peerDependencies": {
"react": "^16.0.0"
},
"repository": {
"url": "https://github.com/nitin42/stylus-in-react",
"type": "git"
},
"files": [
"build"
],
"keywords": [
"Stylus",
"React",
"css-in-js",
"css",
"parse css"
],
"devDependencies": {
"babel-eslint": "^8.0.0",
"babel-loader": "^7.1.2",
"babel-preset-react-app": "^3.0.2",
"compression-webpack-plugin": "^1.0.0",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.3.0",
"husky": "^0.14.3",
"jest": "^21.0.2",
"jest-cli": "^21.0.2",
"lint-staged": "^4.2.1",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"stylus": "^0.54.5",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.7.1"
},
"scripts": {
"validate": "yarn test && yarn lint",
"precommit": "lint-staged",
"test": "./node_modules/.bin/jest",
"lint": "./node_modules/.bin/eslint ./src/",
"start": "NODE_ENV=development ./node_modules/.bin/webpack-dev-server --content-base ./public --config ./webpack/webpack.config.dev.js --hot",
"prebuild": "rm -rf ./build",
"build": "NODE_ENV=production ./node_modules/.bin/webpack --config ./webpack/webpack.config.js --progress"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --no-semi --write",
"git add"
]
},
"jest": {
"testEnvironment": "node"
}
}