-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "voxels",
"version": "0.0.1",
"author": "Tiny Pixel Collective, Kelly Mears <[email protected]>",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/pixelcollective/voxels.git"
},
"bugs": {
"url": "https://github.com/pixelcollective/voxels/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"scripts": {
"bootstrap": "wpackio-scripts bootstrap",
"build": "wpackio-scripts build",
"start": "wpackio-scripts start",
"archive": "wpackio-scripts pack",
"lint": "npm run -s lint:scripts && npm run -s lint:styles",
"lint:scripts": "eslint src/**/*.js",
"lint:styles": "stylelint \"src/**/*.{css,sass,scss,sss,less}\""
},
"engines": {
"node": ">=6.4.1"
},
"dependencies": {
"@wpackio/entrypoint": "^2.0.0",
"eslint-plugin-react": "^7.11.1",
"lodash": "^4.17.11",
"materialize-css": "^1.0.0",
"prop-types": "^15.6.2"
},
"devDependencies": {
"@wpackio/scripts": "^2.8.0",
"classnames": "^2.2.6",
"eslint": "~4.19.1",
"eslint-loader": "~1.9",
"eslint-plugin-import": "~2.14.0",
"node-sass": "^4.10.0",
"stylelint": "^8.4.0",
"stylelint-config-standard": "~18.2.0",
"stylelint-webpack-plugin": "^0.10.5"
}
}