forked from styled-components/styled-components-website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.46 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
{
"name": "styled-components-docs",
"version": "1.0.0",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"dev": "node server.js",
"build": "next build",
"lint:js": "eslint .",
"lint:fix": "eslint . --fix",
"lint:css": "stylelint './static/**/*.js' './pages/**/*.js' './test/**/*.js' './utils/**/*.js' './components/**/*.js' './sections/**/*.js'",
"lint": "run-s lint:js lint:css",
"start": "NODE_ENV=production node server.js",
"test": "jest -c .jest.config.js",
"preintegration": "next build",
"integration": "jest -c .jest-integration.config.js --forceExit --silent --runInBand",
"precommit": "lint-staged"
},
"dependencies": {
"axios": "^0.17.1",
"babel-plugin-polished": "^1.1.0",
"babel-plugin-styled-components": "^1.1.7",
"commonmark": "^0.28.1",
"commonmark-react-renderer": "^4.3.3",
"express": "^4.15.2",
"invariant": "^2.2.2",
"isomorphic-fetch": "^2.2.1",
"lru-cache": "^4.0.2",
"module-alias": "^2.0.0",
"next": "https://github.com/styled-components/styled-components-website/blob/master/vendor/next-v2.4.8.tgz?raw=true",
"polished": "^1.3.0",
"preact": "^8.2.1",
"preact-compat": "^3.16.0",
"prismjs": "^1.6.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-live": "^1.8.0-2",
"react-octicons-svg": "^1.1.13",
"styled-components": "^3.0.2",
"styled-theming": "^2.2.0",
"sw-precache-webpack-plugin": "^0.11.4",
"webpack-bundle-analyzer": "^2.4.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-module-resolver": "^2.7.1",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"eslint": "^4.3.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-react": "^7.1.0",
"glob": "^7.1.2",
"glob-promise": "^3.3.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"jest-image-snapshot": "^2.2.0",
"jest-styled-components": "^4.11.0-0",
"lint-staged": "^4.0.2",
"npm-run-all": "^4.0.2",
"prettier": "^1.5.3",
"puppeteer": "0.13.0",
"react-addons-test-utils": "15.4.2",
"react-test-renderer": "15.4.2",
"stylelint": "^8.0.0",
"stylelint-config-standard": "^17.0.0",
"stylelint-processor-styled-components": "^0.2.1",
"stylint-stylish": "^1.4.0"
},
"lint-staged": {
"*.js": [
"jest -c .jest.config.js --findRelatedTests",
"stylelint",
"eslint --fix",
"git add"
]
}
}