-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.8 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.8 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
{
"name": "vforcejs-angular",
"version": "0.4.0",
"description": "A working template for building a Visualforce+Angular SPA on a Salesforce public site",
"private": true,
"scripts": {
"prebuild": "npm run test && npm run build:clean",
"configure": "node internals/scripts/configure",
"build:clean": "rimraf ./build/*",
"build": "cross-env NODE_ENV=production webpack --config internals/webpack/webpack.prod.babel.js --color -p",
"start": "npm run start:tunnel",
"start:tunnel": "cross-env NODE_ENV=development node internals/server",
"lint": "eslint . --ignore-path .gitignore",
"lint:staged": "eslint-staged",
"pretest": "npm run lint",
"test": "npm run test:internals && npm run test:src",
"test:internals": "babel-node internals/testing/jasmine.js",
"test:src": "cross-env NODE_ENV=test karma start internals/testing/karma.conf.js --single-run",
"test:watch": "npm run test -- --auto-watch --no-single-run",
"coveralls": "cat ./coverage/lcov/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/redteal/vforcejs-angular.git"
},
"author": "Jon Crenshaw",
"license": "MIT",
"bugs": {
"url": "https://github.com/redteal/vforcejs-angular/issues"
},
"homepage": "https://github.com/redteal/vforcejs-angular",
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"dependencies": {
"angular": "^1.5.6",
"angular-animate": "^1.5.6",
"angular-motion": "^0.4.4",
"angular-strap": "^2.3.9",
"angular-ui-router": "^0.3.1",
"bootstrap-sass": "^3.3.6",
"font-awesome": "^4.6.3",
"immutable": "^3.8.1",
"lodash": "^4.13.1",
"loglevel": "^1.4.1",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"angular-mocks": "^1.5.6",
"archiver": "^1.0.0",
"async": "^2.0.0-rc.6",
"autoprefixer": "^6.3.6",
"babel-cli": "^6.10.1",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"copy-webpack-plugin": "^3.0.1",
"core-js": "^2.4.0",
"cross-env": "^1.0.8",
"css-loader": "^0.23.1",
"eslint": "^2.12.0",
"eslint-config-redteal": "^1.0.0",
"eslint-import-resolver-webpack": "^0.3.0",
"eventsource-polyfill": "^0.9.6",
"exports-loader": "^0.6.3",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"fs-extra": "^0.30.0",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.21.0",
"inquirer": "^1.0.3",
"ip": "^1.1.3",
"jade": "^1.11.0",
"jade-loader": "^0.8.0",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"jasmine-spec-reporter": "^2.5.0",
"jfs": "^0.2.6",
"jsforce": "^1.6.5",
"json-loader": "^0.5.4",
"karma": "^0.13.22",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.26",
"karma-webpack": "^1.7.0",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"mustache": "^2.2.1",
"ng-annotate-loader": "^0.1.0",
"ngrok": "^2.2.1",
"node-libs-browser": "^1.0.0",
"node-sass": "^3.7.0",
"phantomjs-prebuilt": "^2.1.7",
"postcss-cssnext": "^2.6.0",
"postcss-focus": "^1.0.0",
"postcss-loader": "^0.9.1",
"postcss-reporter": "^1.3.3",
"resolve-url-loader": "^1.4.3",
"rimraf": "^2.5.2",
"sass-loader": "^3.2.0",
"slash": "^1.0.0",
"stream-buffers": "^3.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1",
"webpack-hot-middleware": "^2.10.0",
"webpack-split-by-path": "^0.0.10",
"winston": "^2.2.0",
"yargs": "^4.7.1"
}
}