-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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
{
"name": "biz-symfony-starter",
"version": "1.0.0",
"description": "biz-symfony-starter",
"repository": {
"type": "git",
"url": "git+https://github.com/codeages/biz-symfony-starter.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeages/biz-symfony-starter/issues"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-core": "6.8.0",
"babel-preset-es2015": "6.9.0",
"babel-preset-react": "6.11.1",
"babel-runtime": "6.20.0",
"cross-env": "3.1.4",
"es-webpack-engine": "~2.5.3",
"eslint": "3.16.0",
"eslint-config-airbnb": "14.1.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "4.0.0",
"eslint-plugin-react": "6.10.0",
"nodemon": "1.11.0",
"webpack": "1.14.0"
},
"dependencies": {
"babel-polyfill": "6.5.0",
"admin-lte": "2.3.6",
"bootstrap": "3.3.7",
"bootstrap-notify": "3.1.3",
"es-ckeditor": "latest",
"font-awesome": "4.6.3",
"html5shiv": "3.7.3",
"jquery": "1.12.4",
"jquery-form": "3.50.0",
"jquery-validation": "1.15.1",
"reset.css": "2.0.2",
"respond.js": "1.4.2"
},
"scripts": {
"start": "npm run dev",
"dev": "babel-node ./node_modules/es-webpack-engine/dist/chokidar-watch.js && cross-env NODE_ENV=development nodemon ./webpack.config.js --exec babel-node --max_old_space_size=4096",
"compile": "cross-env NODE_ENV=production babel-node --max_old_space_size=4096 ./node_modules/.bin/webpack --progress",
"compile:debug": "npm run compile -- --debugMode=true",
"lint": "eslint app/Resources/static-src/**/*.js",
"clean": "npm prune"
}
}