forked from ili-ili/next.js-style-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.47 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
{
"name": "next-style-loader",
"description": "Makes loading of CSS files possible innext.js projects through webpack & babel",
"version": "0.3.1",
"keywords": [
"next",
"next.js",
"style",
"style-loader",
"css",
"postcss"
],
"scripts": {
"build": "npm run clean && babel src --out-dir .",
"clean": "rimraf *.js",
"lint": "eslint '{src/**/*.js,test/**/*.js}' --ignore-pattern=test/coverage",
"prepublish": "npm run lint && npm run build",
"test": "npm run lint",
"watch": "npm run build && chokidar 'src/**/*' 'package.json' '.babelrc' -c 'npm run build' --verbose"
},
"author": "André Cruz <[email protected]>",
"homepage": "https://github.com/moxystudio/next-style",
"bugs": "https://github.com/moxystudio/next-style/issues",
"repository": "[email protected]:moxystudio/next.js-style-loader.git",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.22.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-3": "^6.22.0",
"chokidar-cli": "^1.2.0",
"eslint": "^3.9.1",
"eslint-config-moxy": "^1.0.0",
"eslint-plugin-react": "^6.9.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"hoist-non-react-statics": "^1.2.0",
"loader-utils": "^0.2.16",
"react": "^15.4.2",
"style-loader": "git://github.com/bendytree/style-loader.git"
}
}