-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.27 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.27 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "aframe404",
"version": "0.0.0",
"description": "",
"author": "manny404",
"main": "src/js/index.js",
"license": "WTFPL",
"repository": {
"type": "git",
"url": "https://github.com/art404/aframe404.git"
},
"keywords": [],
"scripts": {
"babel": "babel-node --presets es2015",
"clean": "npm-run-all clean:*",
"clean:build": "rimraf build/* !build/.gitignore",
"clean:npm": "rimraf npm-debug.log",
"lint": "npm-run-all lint:*",
"lint:stylelint": "stylelint './src/sass/**/*.scss' --syntax scss --config ./.stylelintrc.json",
"lint:semistandard": "eslint --ignore-path ./.eslintignore.json --config ./.eslintrc.json ./src",
"vendor:perf": "webpack --config ./webpack-perf.js",
"prebuild": "npm-run-all clean:build vendor:perf",
"build": "webpack --config ./webpack.config.babel.js --env.devel --progress",
"start": "NODE_ENV=test npm-run-all build develop",
"develop": "babel-node devel --env.devel --hot --port 8080"
},
"dependencies": {
"aframe": "0.5.0",
"aframe-animation-component": "3.2.5",
"aframe-event-set-component": "3.0.3",
"aframe-gradient-sky": "1.0.4",
"aframe-layout-component": "4.1.0",
"aframe-look-at-component": "0.2.0",
"aframe-template-component": "3.2.1",
"babel-polyfill": "6.23.0",
"lodash": "4.17.4",
"query-string": "4.3.4",
"whatwg-fetch": "2.0.3"
},
"devDependencies": {
"autoprefixer": "7.0.1",
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-eslint": "7.2.3",
"babel-loader": "7.0.0",
"babel-preset-latest": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"babel-register": "6.24.1",
"body-parser": "1.17.2",
"chalk": "1.1.3",
"compression": "1.6.2",
"connect-history-api-fallback": "1.3.0",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.28.1",
"eslint": "3.19.0",
"eslint-config-standard": "10.2.1",
"eslint-loader": "1.7.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-node": "4.2.2",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"exports-loader": "0.6.4",
"express": "4.15.3",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.11.1",
"handlebars": "1.3.0",
"handlebars-loader": "1.5.0",
"html-loader": "0.4.5",
"html-webpack-plugin": "2.28.0",
"imports-loader": "0.7.1",
"json-loader": "0.5.4",
"node-sass": "4.5.2",
"npm-run-all": "4.0.2",
"postcss-load-config": "1.2.0",
"postcss-loader": "2.0.5",
"precss": "1.4.0",
"raw-loader": "0.5.1",
"resolve-url-loader": "2.0.2",
"rimraf": "2.6.1",
"sass-loader": "6.0.5",
"style-loader": "0.17.0",
"stylelint": "7.10.1",
"stylelint-config-standard": "16.0.0",
"stylelint-webpack-plugin": "0.7.0",
"url-loader": "0.5.8",
"webpack": "2.5.1",
"webpack-dev-middleware": "1.10.2",
"webpack-hot-middleware": "2.18.0"
},
"engineStrict": true,
"engines": {
"node": ">= 6"
},
"semistandard": {
"parser": "babel-eslint",
"ignore": [
"config/**",
"devel/**",
"build/**",
"**/vendors/**"
]
},
"babel": {
"presets": [
"latest",
"stage-0"
],
"env": {
"test": {},
"development": {},
"production": {}
}
},
"postcss": {}
}