This repository was archived by the owner on Jan 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.48 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.48 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "mozilla-neo",
"version": "2.7.0",
"engines": {
"node": ">=4.4.0"
},
"description": "Create and build React web applications with zero initial configuration and minimal fuss",
"repository": "mozilla/neo",
"files": [
"bin",
"build",
"commands",
"config",
"src"
],
"bin": {
"neo": "./bin/neo"
},
"scripts": {
"test": "npm explore $(node fixture) -- 'npm install && npm test'"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
]
},
"commands": [
{
"name": "init",
"description": "Scaffold and initialize a React-based application",
"generator": true
},
{
"name": "start",
"description": "Start a webpack development server",
"options": {
"--port [port]": [
"Specify to port on which to start the development server",
4000
],
"--config [file]": "Specify an alternate webpack configuration to use"
}
},
{
"name": "build",
"description": "Render the application to static assets",
"environment": "production",
"options": {
"--config [file]": "Specify an alternate webpack configuration to use"
}
},
{
"name": "test",
"description": "Run the project's tests and generate coverage reports",
"environment": "test",
"options": {
"--config [file]": "Specify an alternate karma configuration to use",
"--watch": "Keep browser waiting for test re-runs and watch for file changes."
}
}
],
"keywords": [
"react",
"redux",
"webpack"
],
"author": "Eli Perelman <[email protected]> (http://eliperelman.com/)",
"license": "MPL-2.0",
"dependencies": {
"babel-core": "6.14.0",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.5",
"babel-plugin-transform-runtime": "6.15.0",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-0": "6.5.0",
"babel-runtime": "6.11.6",
"chai": "3.5.0",
"chai-enzyme": "0.5.1",
"clean-webpack-plugin": "0.1.10",
"css-loader": "0.25.0",
"deepmerge": "0.2.10",
"enzyme": "2.4.1",
"eslint": "3.5.0",
"eslint-loader": "1.5.0",
"eslint-plugin-mocha": "4.5.1",
"eslint-plugin-react": "6.2.2",
"exists-file": "2.1.0",
"exports-loader": "0.6.3",
"expose-loader": "0.7.1",
"file-loader": "0.9.0",
"svg-url-loader": "1.1.0",
"html-webpack-plugin": "2.22.0",
"imports-loader": "0.6.5",
"isparta-instrumenter-loader": "1.0.1",
"json-loader": "0.5.4",
"karma": "1.3.0",
"karma-babel-preprocessor": "6.0.1",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-mocha": "1.1.1",
"karma-mocha-reporter": "2.1.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.8.0",
"mocha": "3.0.2",
"node-sass": "3.10.0",
"qs": "6.2.1",
"react-hot-loader": "1.3.0",
"sass-loader": "4.0.2",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"vorpal": "1.4.1",
"webpack": "1.13.2",
"webpack-dev-server": "1.15.2",
"webpack-hot-middleware": "2.12.2",
"webpack-merge": "0.14.1",
"worker-loader": "0.7.1",
"yeoman-environment": "1.6.3",
"yeoman-generator": "0.24.1"
},
"devDependencies": {
"yeoman-test": "1.5.0"
},
"bugs": {
"url": "https://github.com/mozilla/neo/issues"
},
"homepage": "https://github.com/mozilla/neo#readme"
}